You are here

public function TestFileParserTest::testGetTestListFromFile in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Test/RunTests/TestFileParserTest.php \Drupal\Tests\Core\Test\RunTests\TestFileParserTest::testGetTestListFromFile()
  2. 10 core/tests/Drupal/Tests/Core/Test/RunTests/TestFileParserTest.php \Drupal\Tests\Core\Test\RunTests\TestFileParserTest::testGetTestListFromFile()

@covers ::getTestListFromFile

File

core/tests/Drupal/Tests/Core/Test/RunTests/TestFileParserTest.php, line 82

Class

TestFileParserTest
@coversDefaultClass \Drupal\Core\Test\RunTests\TestFileParser @group Test @group RunTests

Namespace

Drupal\Tests\Core\Test\RunTests

Code

public function testGetTestListFromFile() {
  $parser = new TestFileParser();
  $this
    ->assertEquals([
    'Drupal\\Tests\\Core\\Test\\RunTests\\TestFileParserTest',
  ], $parser
    ->getTestListFromFile(__FILE__));
  $this
    ->assertEquals([
    'Drupal\\KernelTests\\Core\\Datetime\\Element\\TimezoneTest',
  ], $parser
    ->getTestListFromFile(__DIR__ . '/../../../../KernelTests/Core/Datetime/Element/TimezoneTest.php'));

  // Not a test.
  $this
    ->assertEmpty($parser
    ->getTestListFromFile(__DIR__ . '/../../../AssertHelperTrait.php'));
}