PhpUnitAutoloaderTest.php

Same filename and directory in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Test/PhpUnitAutoloaderTest.php
  2. 10 core/tests/Drupal/Tests/Core/Test/PhpUnitAutoloaderTest.php
  3. 11.x core/tests/Drupal/Tests/Core/Test/PhpUnitAutoloaderTest.php

Namespace

Drupal\Tests\Core\Test

File

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.