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

testApiGet_ReturnsArray_ForNullKey() public method

    public function testApiGet_ReturnsArray_ForNullKey()
    {
        $support = $this->createArraySupportMock();
        $array = $this->getArray();
        $this->assertSame($array, $support::get($array, null));
    }
ArraySupportTest