PHPUnit | assertContainsOnly() Function Last Updated : 02 Feb, 2022 Comments Improve Suggest changes Like Article Like Report The assertContainsOnly() function is a builtin function in PHPUnit and is used to assert an array to contain all its values as the given data type. This assertion will return true in the case if the array contains values of only given data type else return false and in case of true the asserted test case got passed else test case got failed.Syntax: assertContainsOnly(string $dataType, array $array, boolean $isNativeType = null, string $message = '') Parameters: This function accepts four parameters as shown in the above syntax. The parameters are described below: $dataType: This parameter is a string which consists of the name of datatype.$array: This parameter is array for which the assert function will check whether it contains only values of given type or not.$isNativeType: This parameters tell whether the datatype is PHP native data type or not.$message: This parameter takes string value. When the testcase got failed this string message got displayed as error message. Below programs illustrate the assertContainsOnly() function in PHPUnit:Program 1: php <?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeTestcaseForAssertContainsOnly() { $testArray = array("geeksforgeek", 2); $dataType = "string"; // assert function to test whether testArray contains // only string values $this->assertContainsOnly($dataType, $testArray, null, "testArray doesn't contains only string") ; } } ?> Output: PHPUnit 8.2.5 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 236 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testNegativeTestcaseForAssertContainsOnly testArray doesn't contains only string Failed asserting that Array &0 ( 0 => 'geeksforgeek' 1 => 2 ) contains only values of type "string". /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 testPositiveTestcaseForAssertContainsOnly() { $testArray = array("geeksforgeek", "learn"); $dataType = "string"; // assert function to test whether testArray contains // only string values $this->assertContainsOnly($dataType, $testArray, null, "testArray doesn't contains only string") ; } } ?> Output: PHPUnit 8.2.5 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 67 ms, Memory: 10.00 MB OK (1 test, 1 assertion) Note: To run testcases with phpunit follow steps from here. Also, assertContainsOnly() is supported by phpunit 7 and above. Comment More infoAdvertise with us Next Article PHPUnit | assertContainsOnly() Function S Shivam.Pradhan Follow Improve Article Tags : Web Technologies PHP PHP-PHPUnit Similar Reads PHPUnit | assertNotContainsOnly() Function The assertNotContainsOnly() function is a builtin function in PHPUnit and is used to assert an array not to contain all its values as the given data type. This assertion will return true in the case if the array contains values apart from given data type else return false. In case of true the assert 2 min read PHPUnit | assertContains() function The assertContains() function is a builtin function in PHPUnit and is used to assert an array having a value. This assertion will return true in the case if the array contains the provided value else return false and in case of true the asserted test case got passed else test case got failed. Syntax 2 min read PHPUnit | assertNotContains() function The assertNotContains() function is a builtin function in PHPUnit and is used to assert an array not having a value. This assertion will return true in the case if the array doesn't contain the provided value else return false and in case of true the asserted test case got passed else test case got 2 min read PHPunit | assertContainsOnlyInstancesOf() Function The assertContainsOnlyInstancesOf() function is a builtin function in PHPUnit and is used to assert an array to contain all its values as instance of the given class. This assertion will return true in the case if the array contains the only instances of given class else returns false. In case of tr 2 min read PHPunit | assertCount() Function The assertCount() function is a builtin function in PHPUnit and is used to assert an array to contain same number of elements as the given count value. This assertion will return true in the case if the array contains only an exact number of elements as given count else return false. In case of true 2 min read PHPUnit assertNan() Function The assertNan() function is a builtin function in PHPUnit and is used to assert whether the variable is NAN or not. This assertion will return true in the case if the variable is NAN else returns false. In case of true the asserted test case got passed else test case got failed. Syntax: assertNan(mi 2 min read PHPUnit assertIsBool() Function The assertIsBool() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is Bool or not. This assertion will return true in the case if the actual value is the Bool else returns false. In case of true the asserted test case got passed else test case got 2 min read PHPUnit assertIsInt() Function The assertIsInt() function is a builtin function in PHPUnit and is used to assert whether the given actual variable is an integer or not. This assertion will return true in the case if the actual variable is an integer else returns false. In case of true the asserted test case got passed else test c 2 min read PHPUnit assertNotNull() Function The assertNotNull() function is a builtin function in PHPUnit and is used to assert whether the variable is not (Null ). This assertion will return true in the case if the variable is Not (Null) else return false. In case of true the asserted test case got passed else test case got failed. Syntax: a 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 Like