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