public function SymfonyFileLocatorTest::testGetPaths in Plug 7
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ SymfonyFileLocatorTest.php, line 10
Class
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
public function testGetPaths() {
$path = __DIR__ . "/_files";
$prefix = "Foo";
$locator = new SymfonyFileLocator(array(
$path => $prefix,
));
$this
->assertEquals(array(
$path,
), $locator
->getPaths());
$locator = new SymfonyFileLocator(array(
$path => $prefix,
));
$this
->assertEquals(array(
$path,
), $locator
->getPaths());
}