public function AnnotationDirectoryLoaderTest::testSupports

@covers Symfony\Component\Routing\Loader\AnnotationDirectoryLoader::supports

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Loader/AnnotationDirectoryLoaderTest.php, line 40

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');
}