class PhpUnitAutoloaderTest

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Test/PhpUnitAutoloaderTest.php \Drupal\Tests\Core\Test\PhpUnitAutoloaderTest
  2. 10 core/tests/Drupal/Tests/Core/Test/PhpUnitAutoloaderTest.php \Drupal\Tests\Core\Test\PhpUnitAutoloaderTest
  3. 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

Expanded class hierarchy of PhpUnitAutoloaderTest

File

core/tests/Drupal/Tests/Core/Test/PhpUnitAutoloaderTest.php, line 12

Namespace

Drupal\Tests\Core\Test
View 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.