class PhpUnitAutoloaderTest
Same name and namespace in other branches
- 11.x core/tests/Drupal/Tests/Core/Test/PhpUnitAutoloaderTest.php \Drupal\Tests\Core\Test\PhpUnitAutoloaderTest
- 10 core/tests/Drupal/Tests/Core/Test/PhpUnitAutoloaderTest.php \Drupal\Tests\Core\Test\PhpUnitAutoloaderTest
- 8.9.x core/tests/Drupal/Tests/Core/Test/PhpUnitAutoloaderTest.php \Drupal\Tests\Core\Test\PhpUnitAutoloaderTest
Tests that classes are correctly loaded during PHPUnit initialization.
@group Test
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\Core\Test\PhpUnitAutoloaderTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of PhpUnitAutoloaderTest
File
-
core/
tests/ Drupal/ Tests/ Core/ Test/ PhpUnitAutoloaderTest.php, line 12
Namespace
Drupal\Tests\Core\TestView source
class PhpUnitAutoloaderTest extends UnitTestCase {
/**
* Tests loading of classes provided by test sub modules.
*/
public function testPhpUnitTestClassesLoading() {
$this->assertTrue(class_exists('\\Drupal\\phpunit_test\\PhpUnitTestDummyClass'), 'Class provided by test module was not autoloaded.');
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.