PhpUnitAutoloaderTest.php
Same filename in other branches
Namespace
Drupal\Tests\Core\TestFile
-
core/
tests/ Drupal/ Tests/ Core/ Test/ PhpUnitAutoloaderTest.php
View source
<?php
namespace Drupal\Tests\Core\Test;
use Drupal\Tests\UnitTestCase;
/**
* Tests that classes are correctly loaded during PHPUnit initialization.
*
* @group Test
*/
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.');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
PhpUnitAutoloaderTest | Tests that classes are correctly loaded during PHPUnit initialization. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.