Kraken\_Unit\Util\Support\ArraySupportTest::testApiRemove_EmptiesArray_ForEmptyStringKey PHP Method

testApiRemove_EmptiesArray_ForEmptyStringKey() public method

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