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

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

    public function testApiRemove_EmptiesArray_ForNullKey()
    {
        $support = $this->createArraySupportMock();
        $array = $this->getArray();
        $support::remove($array, null);
        $this->assertSame([], $array);
    }
ArraySupportTest