PHPUnit | assertArrayNotHasKey() function Last Updated : 19 Jul, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The assertArrayNotHasKey() function is a builtin function in PHPUnit and is used to assert an array not having a particular key.This assertion will return true in the case if the array doesn't have the provided key else return false and in case of true the asserted test case got passed else test case got failed. Syntax: assertArrayNotHasKey(mixed $key, array $array[, string $message = '']) Parameters: This function accepts three parameters as shown in the above syntax. The parameters are described below: $key: This parameter represents name of the key to be contained by array.. $array: This parameter is an array for whom the key is to be searched. $message: This parameter takes string value. When the testcase got failed this string message got displayed as error message. Below programs illustrate the assertArrayNotHasKey() function: Program 1: php <?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeTestcaseForArrayNotHasKey() { // array to be tested $array = array('geeks' => 'geeksForgeeks', ); // assert function to test whether 'geeks' is a key of array $this->assertArrayNotHasKey('geeks', $array, "Array contains 'geeks' as key"); } } ?> Output: PHPUnit 6.5.5 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 61 ms, Memory: 4.00MB There was 1 failure: 1) GeeksPhpunitTestCase::testNegativeTestcaseForArrayNotHasKey Array contains 'geeks' as key Failed asserting that an array does not have the key 'geeks'. /home/shivam/Documents/geeks/phpunit/abc.php:11 FAILURES! Tests: 1, Assertions: 1, Failures: 1. Program 2: php <?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveTestcaseForArrayNotHasKey() { // array to be tested $array = array('geek' => 'geeksForgeeks', ); // assert function to test whether 'geek' is a key of array $this->assertArrayNotHasKey('geeks', $array, "Array contains 'geeks' as key"); } } ?> Output: PHPUnit 6.5.5 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 21 ms, Memory: 4.00MB OK (1 test, 1 assertion) Note : To run testcases with phpunit follow steps from here. Comment More infoAdvertise with us Next Article PHPUnit | assertArraySubset() function S Shivam.Pradhan Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-PHPUnit Similar Reads PHPUnit | assertArrayHasKey() function The assertArrayHasKey() function is a builtin function in PHPUnit and is used to assert an array having a particular key or not.This assertion will return true in the case if the array has the provided key else return false and in case of true the asserted test case got passed else test case got fai 2 min read PHPUnit | assertArraySubset() function The assertArraySubset() function is a builtin function in PHPUnit and is used to assert an array having a subset.This assertion will return true in the case if the array contains the provided subset else return false and in case of true the asserted test case got passed else test case got failed. Sy 2 min read PHPUnit assertNotFalse() Function The assertNotFalse() function is a builtin function in PHPUnit and is used to assert the conditional value is true. This assertion will return true in the case if the conditional value is true else return false. In case of true, the asserted test case got passed else test case got failed. Syntax : a 2 min read PHPUnit assertIsArray() Function The assertIsArray() function is a builtin function in PHPUnit and is used to assert whether the given variable is an array or not. This assertion will return true in the case if the given variable is array else returns false. In case of true the asserted test case got passed else test case got faile 2 min read PHPUnit assertNotSame() Function The assertNotSame() function is a builtin function in PHPUnit and is used to assert the actually obtained value to be not-same to the expected value. This assertion will return true in the case if the expected value is not-same to actual value else returns false. In case of true the asserted test ca 2 min read PHPunit | assertNotEmpty() Function The assertNotEmpty() function is a builtin function in PHPUnit and is used to assert whether the data holder specified is non-empty or not. This assertion will return true in the case if the data holder provided is non-empty else return false. In case of true the asserted test case got passed else t 2 min read Like