shouldBeGreaterThan

Verify that t is greater than u.

void
shouldBeGreaterThan
(
T
U
)
(
const scope auto ref T t
,
const scope auto ref U u
,
string file = __FILE__
,
size_t line = __LINE__
)

Throws

UnitTestException on failure.

Examples

shouldBeGreaterThan(7, 5);

Meta