Kraken\_Unit\Supervision\SupervisorTest::testApiResolveHandler_ThrowsException_WhenHandlerDoesNotExistInsideFactory PHP Method

testApiResolveHandler_ThrowsException_WhenHandlerDoesNotExistInsideFactory() public method

    public function testApiResolveHandler_ThrowsException_WhenHandlerDoesNotExistInsideFactory()
    {
        $super = $this->createSupervisor();
        $this->setExpectedException(IllegalCallException::class);
        $this->callProtectedMethod($super, 'resolveHandler', ['OtherHandler']);
    }