Kraken\_Unit\Util\Support\ArraySupportTest::testApiExists_ReturnsFalse_ForSimpleKey_WhichDoesNotExist PHP Метод

testApiExists_ReturnsFalse_ForSimpleKey_WhichDoesNotExist() публичный Метод

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