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

testApiRemoveParam_DoesNothing_WhenParamDoesNotExist() public method

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