Kraken\_Unit\Util\Support\ArraySupportTest::testApiRemove_DoesNothing_ForNonExistingKey PHP Метод

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

    public function testApiRemove_DoesNothing_ForNonExistingKey()
    {
        $support = $this->createArraySupportMock();
        $array = $this->getArray();
        $this->assertFalse(isset($array['f']['a']));
        $support::remove($array, 'f.a');
    }
ArraySupportTest