Example #1
0
 /**
  * @throws NoHandlerException
  * @expectedException \DMS\Chainlink\NoHandlerException
  */
 public function testGetAllHandlersForWithNoCompatibleHandler()
 {
     $input = new \stdClass();
     $handlers = $this->buildHandlers(false, false, false, $input);
     $this->assignMultipleHandlers($handlers);
     $returnHandlers = $this->target->getAllHandlersFor($input);
 }