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

testApiRemoveSolver_DoesNothing_WhenHandlerDoesNotExist() public method

    public function testApiRemoveSolver_DoesNothing_WhenHandlerDoesNotExist()
    {
        $super = $this->createSupervisor();
        $this->assertFalse($super->existsSolver(Exception::class));
        $super->removeSolver(Exception::class);
        $this->assertFalse($super->existsSolver(Exception::class));
    }