assertLessThanOrEqual()
assertLessThanOrEqual(mixed $expected, mixed $actual[, string $message = ''])
Reports an error identified by $message if the value of $actual is not less than or equal to the value of $expected.
assertAttributeLessThanOrEqual() is a convenience wrapper that uses a public, protected, or private attribute of a class or object as the actual value.
Example A.37: Usage of assertLessThanOrEqual()
<?php
use PHPUnit\Framework\TestCase;
class LessThanOrEqualTest extends Tes