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

testApiRemoveParam_RemovesParam_WhenParamDoesExist() public method

    public function testApiRemoveParam_RemovesParam_WhenParamDoesExist()
    {
        $super = $this->createSupervisor(['param' => 'value']);
        $this->assertTrue($super->existsParam('param'));
        $super->removeParam('param');
        $this->assertFalse($super->existsParam('param'));
    }