You are here

public function AbstractAnnotationLoaderTest::getClassLoader in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/Tests/Loader/AbstractAnnotationLoaderTest.php \Symfony\Component\Routing\Tests\Loader\AbstractAnnotationLoaderTest::getClassLoader()
3 calls to AbstractAnnotationLoaderTest::getClassLoader()
AnnotationClassLoaderTest::setUp in vendor/symfony/routing/Tests/Loader/AnnotationClassLoaderTest.php
AnnotationDirectoryLoaderTest::setUp in vendor/symfony/routing/Tests/Loader/AnnotationDirectoryLoaderTest.php
AnnotationFileLoaderTest::setUp in vendor/symfony/routing/Tests/Loader/AnnotationFileLoaderTest.php

File

vendor/symfony/routing/Tests/Loader/AbstractAnnotationLoaderTest.php, line 24

Class

AbstractAnnotationLoaderTest

Namespace

Symfony\Component\Routing\Tests\Loader

Code

public function getClassLoader($reader) {
  return $this
    ->getMockBuilder('Symfony\\Component\\Routing\\Loader\\AnnotationClassLoader')
    ->setConstructorArgs(array(
    $reader,
  ))
    ->getMockForAbstractClass();
}