Source

						public function testServiceLocateAllCommands() {
		$result = Libraries::locate('command');
		$this->assertTrue(count($result) > 7);

		$expected = array('lithium\console\command\g11n\Extract');
		$result = Libraries::locate('command.g11n');
		$this->assertEqual($expected, $result);
	}