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