Extends
lithium\test\UnitSource
public function testRunWithCommand() {
$response = Dispatcher::run(new Request(array(
'args' => array(
'lithium\tests\mocks\console\MockDispatcherCommand'
)
)));
$expected = 'run';
$result = $response->testAction;
$this->assertEqual($expected, $result);
}