You are here

public function AnnotationDirectoryLoaderTest::testSupports in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/Tests/Loader/AnnotationDirectoryLoaderTest.php \Symfony\Component\Routing\Tests\Loader\AnnotationDirectoryLoaderTest::testSupports()

File

vendor/symfony/routing/Tests/Loader/AnnotationDirectoryLoaderTest.php, line 43

Class

AnnotationDirectoryLoaderTest

Namespace

Symfony\Component\Routing\Tests\Loader

Code

public function testSupports() {
  $fixturesDir = __DIR__ . '/../Fixtures';
  $this
    ->assertTrue($this->loader
    ->supports($fixturesDir), '->supports() returns true if the resource is loadable');
  $this
    ->assertFalse($this->loader
    ->supports('foo.foo'), '->supports() returns true if the resource is loadable');
  $this
    ->assertTrue($this->loader
    ->supports($fixturesDir, 'annotation'), '->supports() checks the resource type if specified');
  $this
    ->assertFalse($this->loader
    ->supports($fixturesDir, 'foo'), '->supports() checks the resource type if specified');
}