You are here

PhpUnitAutoloaderTest.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/tests/Drupal/Tests/Core/Test/PhpUnitAutoloaderTest.php

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

Namesort descending Description
PhpUnitAutoloaderTest Tests that classes are correctly loaded during PHPUnit initialization.