12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Component\Routing\Loader;
- use Symfony\Component\Routing\Loader\AnnotationDirectoryLoader;
- use Symfony\Component\Config\FileLocator;
- require_once __DIR__.'/AbstractAnnotationLoaderTest.php';
- class AnnotationDirectoryLoaderTest extends AbstractAnnotationLoaderTest
- {
- protected $loader;
- protected $reader;
- public function setUp()
- {
- parent::setUp();
- $this->reader = $this->getReader();
- $this->loader = new AnnotationDirectoryLoader(new FileLocator(), $this->getClassLoader($this->reader));
- }
- public function testLoad()
- {
- $this->reader->expects($this->once())->method('getClassAnnotation');
- $this->loader->load(__DIR__.'/../Fixtures/AnnotatedClasses');
- }
- /**
- * @covers Symfony\Component\Routing\Loader\AnnotationDirectoryLoader::supports
- */
- public function testSupports()
- {
- $fixturesDir = __DIR__.'/../Fixtures';
- $this->assertTrue($this->loader->supports($fixturesDir), '->supports() returns true if the resource is loadable');
- $this->assertFalse($this->loader->supports('foo.foo'), '->supports() returns true if the resource is loadable');
- $this->assertTrue($this->loader->supports($fixturesDir, 'annotation'), '->supports() checks the resource type if specified');
- $this->assertFalse($this->loader->supports($fixturesDir, 'foo'), '->supports() checks the resource type if specified');
- }
- }
|