Extends
lithium\test\UnitSource
public function testServiceLocateApp() {
$this->skipIf(!$this->hasApp, 'Running in standalone mode.');
$result = Libraries::locate('controllers', 'HelloWorld');
$expected = 'app\controllers\HelloWorldController';
$this->assertEqual($expected, $result);
// Tests caching of paths
$result = Libraries::locate('controllers', 'HelloWorld');
$this->assertEqual($expected, $result);
}