assertGreaterThan()
assertGreaterThan(mixed $expected, mixed $actual[, string $message = ''])
Reports an error identified by $message if the value of $actual is not greater than the value of $expected.
assertAttributeGreaterThan() is a convenience wrapper that uses a public, protected, or private attribute of a class or object as the actual value.
Example A.26: Usage of assertGreaterThan()
<?php
use PHPUnit\Framework\TestCase;
class GreaterThanTest extends TestCase
{
public function t