MockFileFinderTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Component/Annotation/MockFileFinderTest.php
  2. 8.9.x core/tests/Drupal/Tests/Component/Annotation/MockFileFinderTest.php
  3. 10 core/tests/Drupal/Tests/Component/Annotation/MockFileFinderTest.php

Namespace

Drupal\Tests\Component\Annotation

File

core/tests/Drupal/Tests/Component/Annotation/MockFileFinderTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Component\Annotation;

use Drupal\Component\Annotation\Reflection\MockFileFinder;
use PHPUnit\Framework\TestCase;

/**
 * @coversDefaultClass \Drupal\Component\Annotation\Reflection\MockFileFinder
 * @group Annotation
 */
class MockFileFinderTest extends TestCase {
    
    /**
     * @covers ::create
     * @covers ::findFile
     */
    public function testFindFile() : void {
        $tmp = MockFileFinder::create('test_filename.txt');
        $this->assertEquals('test_filename.txt', $tmp->findFile('n/a'));
        $this->assertEquals('test_filename.txt', $tmp->findFile('SomeClass'));
    }

}

Classes

Title Deprecated Summary
MockFileFinderTest @coversDefaultClass \Drupal\Component\Annotation\Reflection\MockFileFinder @group Annotation

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.