/**
  * @expectedException \League\Tactician\Exception\MissingHandlerException
  */
 public function testHandlerMissing()
 {
     $this->inMemoryLocator->getHandlerForCommand('League\\Tactician\\Tests\\Fixtures\\Command\\CompleteTaskCommand');
 }
Exemplo n.º 2
0
 /**
  * @expectedException \League\Tactician\Exception\MissingHandlerException
  */
 public function testHandlerMissing()
 {
     $this->inMemoryLocator->getHandlerForCommand(CompleteTaskCommand::class);
 }