| 1 | <?php |
||
| 9 | class DispatcherTest extends \PHPUnit_Framework_TestCase |
||
| 10 | { |
||
| 11 | /** @var EventDispatcher|\PHPUnit_Framework_MockObject_MockObject */ |
||
| 12 | private $eventDispatcher; |
||
| 13 | |||
| 14 | /** @var CommandInterface|\PHPUnit_Framework_MockObject_MockObject */ |
||
| 15 | private $command; |
||
| 16 | |||
| 17 | public function setUp() |
||
| 22 | |||
| 23 | public function testExecuteWithNoUseCaseRegistered() |
||
| 30 | } |
||
| 31 |