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

testApiExists_ReturnsTrue_ForComplexKey_WhichExistsDirectly() public method

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