public function testFindMappingFile() {
$path = __DIR__ . "/_files";
$prefix = "Foo";
$locator = new SymfonyFileLocator(array(
$path => $prefix,
), ".yml");
$this
->assertEquals(__DIR__ . "/_files/stdClass.yml", $locator
->findMappingFile("Foo\\stdClass"));
}