public function DefaultFileLocatorTest::testUniquePaths in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/DefaultFileLocatorTest.php \Doctrine\Tests\Common\Persistence\Mapping\DefaultFileLocatorTest::testUniquePaths()
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ DefaultFileLocatorTest.php, line 29
Class
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
public function testUniquePaths() {
$path = __DIR__ . "/_files";
$locator = new DefaultFileLocator(array(
$path,
$path,
));
$this
->assertEquals(array(
$path,
), $locator
->getPaths());
}