public function DefaultFileLocatorTest::testFindMappingFileNotFound in Plug 7
File
- lib/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/DefaultFileLocatorTest.php, line 46
Class
- DefaultFileLocatorTest
Namespace
Doctrine\Tests\Common\Persistence\Mapping
Code
public function testFindMappingFileNotFound() {
$path = __DIR__ . "/_files";
$locator = new DefaultFileLocator(array(
$path,
), ".yml");
$this
->setExpectedException('Doctrine\\Common\\Persistence\\Mapping\\MappingException', "No mapping file found named 'stdClass2.yml' for class 'stdClass2'");
$locator
->findMappingFile('stdClass2');
}