You are here

public function AnnotationFileLoaderTest::testLoad in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/routing/Tests/Loader/AnnotationFileLoaderTest.php \Symfony\Component\Routing\Tests\Loader\AnnotationFileLoaderTest::testLoad()

File

vendor/symfony/routing/Tests/Loader/AnnotationFileLoaderTest.php, line 31

Class

AnnotationFileLoaderTest

Namespace

Symfony\Component\Routing\Tests\Loader

Code

public function testLoad() {
  $this->reader
    ->expects($this
    ->once())
    ->method('getClassAnnotation');
  $this->loader
    ->load(__DIR__ . '/../Fixtures/AnnotatedClasses/FooClass.php');
}