Kraken\_Unit\Supervision\SupervisorTest::testApiRemoveSolver_DoesNothing_WhenHandlerDoesNotExist PHP Метод

testApiRemoveSolver_DoesNothing_WhenHandlerDoesNotExist() публичный Метод

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