Kraken\_Unit\Util\Support\ArraySupportTest::testApiRemove_EmptiesArray_ForEmptyStringKey PHP 메소드

testApiRemove_EmptiesArray_ForEmptyStringKey() 공개 메소드

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