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

testApiExists_ReturnsFalse_ForComplexKey_WhichDoesNotExist() public method

    public function testApiExists_ReturnsFalse_ForComplexKey_WhichDoesNotExist()
    {
        $support = $this->createArraySupportMock();
        $array = $this->getArray();
        $this->assertFalse($support::exists($array, 'x.a.c'));
    }
ArraySupportTest