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 failed.
Syntax:
assertIsBool($actual[, $message = ''])
Parameters: This function accepts two parameters as mentioned above and described below:
- $actualvalue: This parameter is of any type which represents the actual data.
- $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 assertIsBool() function in PHPUnit:
Example 1:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeForassertIsNotBooltrue() { $actual = 420; // Assert function to test whether actual // value is (true or false) or not $this ->assertIsBool( $actual , "actual value is Bool or not" ); } public function testNegativeForassertIsNotBoolFalse() { $actual = 220; // Assert function to test whether actual // value is (true or false) or not $this ->assertIsBool( $actual , "actual value is Bool or not" ); } } ?> |
Output:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. FF 2 / 2 (100%) Time: 93 ms, Memory: 10.00 MB There were 2 failures: 1) GeeksPhpunitTestCase::testNegativeForassertIsNotBooltrue actual value is false/true Failed asserting that 420 is of type "bool". /home/lovely/Documents/php/test.php:14 2) GeeksPhpunitTestCase::testNegativeForassertIsNotBoolFalse actual value is false/true Failed asserting that 220 is of type "bool". /home/lovely/Documents/php/test.php:30 FAILURES! Tests: 2, Assertions: 2, Failures: 2
Example 2:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveForassertIsNotBooltrue() { $actual = true; // Assert function to test whether actual // value is (true or false) or not $this ->assertIsBool( $actual , "actual value is Bool or not" ); } public function testPositiveForassertIsNotBoolFalse() { $actual = false; // Assert function to test whether actual // value is (true or false) or not $this ->assertIsBool( $actual , "actual value is Bool or not" ); } } ?> |
Output:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. .. 2 / 2 (100%) Time: 88 ms, Memory: 10.00 MB OK (2 tests, 2 assertions)
Reference: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertisbool
Please Login to comment...