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

testApiExists_ReturnsTrue_ForComplexKey_WhichExistsIndirectly() public method

    public function testApiExists_ReturnsTrue_ForComplexKey_WhichExistsIndirectly()
    {
        $support = $this->createArraySupportMock();
        $array = $this->getArray();
        $this->assertTrue($support::exists($array, 'b.b'));
    }
ArraySupportTest