Extends
lithium\test\UnitSource
public function testLocateCommandInLithium() {
$expected = array(
'lithium\console\command\Create',
'lithium\console\command\G11n',
'lithium\console\command\Help',
'lithium\console\command\Library',
'lithium\console\command\Route',
'lithium\console\command\Test'
);
$result = Libraries::locate('command', null, array(
'library' => 'lithium', 'recursive' => false
));
$this->assertEqual($expected, $result);
}