public function AnnotationFileLoaderTest::testLoad in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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
Namespace
Symfony\Component\Routing\Tests\LoaderCode
public function testLoad() {
  $this->reader
    ->expects($this
    ->once())
    ->method('getClassAnnotation');
  $this->loader
    ->load(__DIR__ . '/../Fixtures/AnnotatedClasses/FooClass.php');
}