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

testApiGet_ReturnsElement_ForExistingElement() public method

    public function testApiGet_ReturnsElement_ForExistingElement()
    {
        $support = $this->createArraySupportMock();
        $array = $this->getArray();
        $this->assertSame($array['d']['a'], $support::get($array, 'd.a'));
    }
ArraySupportTest