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

testApiGet_ReturnsNull_ForNonExistingElement() public method

    public function testApiGet_ReturnsNull_ForNonExistingElement()
    {
        $support = $this->createArraySupportMock();
        $array = $this->getArray();
        $this->assertEquals(null, $support::get($array, 'x.a.c'));
    }
ArraySupportTest