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

testApiSet_ReplacesArray_ForEmptyStringKey() public method

    public function testApiSet_ReplacesArray_ForEmptyStringKey()
    {
        $support = $this->createArraySupportMock();
        $array = $this->getArray();
        $std = new StdClass();
        $support::set($array, '', $std);
        $this->assertSame($std, $array);
    }
ArraySupportTest