protected function componentEndTest($test,
$time) { /** @var \PHPUnit\Framework\Test $test */
if (substr($test->
toString(), 0, 22
) == 'Drupal\Tests\Component'
) { if ($test instanceof BrowserTestBase ||
$test instanceof KernelTestBase ||
$test instanceof UnitTestCase
) { $error =
new AssertionFailedError('Component tests should not extend a core test base class.'
);
$test->
getTestResultObject()->
addFailure($test,
$error,
$time);
} } }}