public function AnnotationFileLoaderTest::testLoad

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Loader/AnnotationFileLoaderTest.php, line 30

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