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

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

    public function testApiRemoveParam_DoesNothing_WhenParamDoesNotExist()
    {
        $super = $this->createSupervisor();
        $this->assertFalse($super->existsParam('param'));
        $super->removeParam('param');
        $this->assertFalse($super->existsParam('param'));
    }