public function SymfonyFileLocatorTest::testFileExists in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/SymfonyFileLocatorTest.php \Doctrine\Tests\Common\Persistence\Mapping\SymfonyFileLocatorTest::testFileExists()
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ SymfonyFileLocatorTest.php, line 39
Class
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
public function testFileExists() {
$path = __DIR__ . "/_files";
$prefix = "Foo";
$locator = new SymfonyFileLocator(array(
$path => $prefix,
), ".yml");
$this
->assertTrue($locator
->fileExists("Foo\\stdClass"));
$this
->assertTrue($locator
->fileExists("Foo\\global"));
$this
->assertFalse($locator
->fileExists("Foo\\stdClass2"));
$this
->assertFalse($locator
->fileExists("Foo\\global2"));
}