public function AnnotationDirectoryLoaderTest::testLoad

File

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

Class

AnnotationDirectoryLoaderTest

Namespace

Symfony\Component\Routing\Tests\Loader

Code

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