public function testGetPrefixes() {
$path = __DIR__ . "/_files";
$prefix = "Foo";
$locator = new SymfonyFileLocator(array(
$path => $prefix,
));
$this
->assertEquals(array(
$path => $prefix,
), $locator
->getNamespacePrefixes());
}