PHPUnit assertFalse() Function Last Updated : 19 Oct, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report The assertFalse() function is a builtin function in PHPUnit and is used to assert the conditional value is true or false. 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 : assertFalse(bool $condition[, string $message = '']) Parameters: This function accepts two parameters as mentioned above and described below: $condition: This parameter is of any type of value that represents the true or false.$message: This parameter takes a string value. When the test case got failed this string message got displayed as an error message. Below examples illustrate the assertfalse() function in PHPUnit:Parameters: Example 1: PHP <?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeTestcaseForassertFalse() { $condition = true; // Assert function to test whether // condition value is true or not $this->assertFalse( $condition, "condition is true or false" ); } } ?> Output: PHPUnit 8.5.8 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 89 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testPsitiveTestcaseForassertFalse condition is true or false Failed asserting that true is false. /home/lovely/Documents/php/test.php:17 FAILURES! Tests: 1, Assertions: 1, Failures: 1. Example 2: PHP <?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveTestcaseForassertFalse() { $condition = false; // Assert function to test whether // condition value is true or not $this->assertFalse( $condition, "condition is true or false" ); } } ?> Output: PHPUnit 8.5.8 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 89 ms, Memory: 10.00 MB OK (1 test, 1 assertion) Reference:https://phpunit.readthedocs.io/en/9.2/assertions.html#assertfalse Comment More infoAdvertise with us Next Article PHPUnit assertNan() Function S shubham_singh Follow Improve Article Tags : Web Technologies PHP PHP-PHPUnit Similar Reads 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 | assertEquals() Function The assertEquals() function is a builtin function in PHPUnit and is used to assert whether the actual obtained value is equals to expected value or not. This assertion will return true in the case if the expected value is the same as the actual value else returns false. In case of true the asserted 2 min read PHPUnit assertSame() Function The assertSame() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is the same as the expected value or not. This assertion will return true in the case if the expected value is the same as the actual value else returns false. In case of true the ass 2 min read PHPUnit assertFileEquals() Function The assertFileEquals() function is a builtin function in PHPUnit and is used to assert whether the actual file content is exactly the same as the content of the expected file or not. This assertion will return true in the case if the expected file content is the same as the actual file content else 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 assertFinite() Function The assertFinite() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is not INF. This assertion will return true in the case if the actual value is not INF else returns false. In case of true the asserted test case got passed else test case got faile 2 min read Like