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

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

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