public function AbstractAnnotationLoaderTest::getReader

3 calls to AbstractAnnotationLoaderTest::getReader()
AnnotationClassLoaderTest::setUp in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Loader/AnnotationClassLoaderTest.php
AnnotationDirectoryLoaderTest::setUp in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Loader/AnnotationDirectoryLoaderTest.php
AnnotationFileLoaderTest::setUp in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Loader/AnnotationFileLoaderTest.php

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Loader/AbstractAnnotationLoaderTest.php, line 23

Class

AbstractAnnotationLoaderTest

Namespace

Symfony\Component\Routing\Tests\Loader

Code

public function getReader() {
  return $this
    ->getMockBuilder('Doctrine\\Common\\Annotations\\Reader')
    ->disableOriginalConstructor()
    ->getMock();
}