Kraken\_Unit\Util\Support\ArraySupportTest::testApiGet_ReturnsArray_ForNullKey PHP Méthode

testApiGet_ReturnsArray_ForNullKey() public méthode

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