The assertLessThanOrEqual() is a built in PHP function to test your php based features before deploying the application on your live application.
Syntax:
assertLessThanOrEqual(mixed $expected, mixed $actual[, string $message = ''])
1 2 3 4 5 6 7 8 9 10 11 | <?php use PHPUnit\Framework\TestCase; class LessThanOrEqualTest extends TestCase { public function testFailure() { $this->assertLessThanOrEqual(1, 2); } } ?> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | $ phpunit LessThanOrEqualTest PHPUnit 8.4.0 by Sebastian Bergmann and contributors. F Time: 0 seconds, Memory: 5.25Mb There was 1 failure: 1) LessThanOrEqualTest::testFailure Failed asserting that 2 is equal to 1 or is less than 1. /home/sb/LessThanOrEqualTest.php:6 FAILURES! Tests: 1, Assertions: 2, Failures: 1. |
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.