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