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