You are here

class MockFileFinderTest in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Annotation/MockFileFinderTest.php \Drupal\Tests\Component\Annotation\MockFileFinderTest
  2. 10 core/tests/Drupal/Tests/Component/Annotation/MockFileFinderTest.php \Drupal\Tests\Component\Annotation\MockFileFinderTest

@coversDefaultClass \Drupal\Component\Annotation\Reflection\MockFileFinder @group Annotation

Hierarchy

  • class \Drupal\Tests\Component\Annotation\MockFileFinderTest extends \PHPUnit\Framework\TestCase

Expanded class hierarchy of MockFileFinderTest

File

core/tests/Drupal/Tests/Component/Annotation/MockFileFinderTest.php, line 12

Namespace

Drupal\Tests\Component\Annotation
View source
class MockFileFinderTest extends TestCase {

  /**
   * @covers ::create
   * @covers ::findFile
   */
  public function testFindFile() {
    $tmp = MockFileFinder::create('testfilename.txt');
    $this
      ->assertEquals('testfilename.txt', $tmp
      ->findFile('n/a'));
    $this
      ->assertEquals('testfilename.txt', $tmp
      ->findFile('someclass'));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MockFileFinderTest::testFindFile public function @covers ::create @covers ::findFile