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

testApiSet_ReturnsSameArray() public method

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