What is the equivalent of assertLessThan in simpletest?
assertTrue($x < 100);
You could just use assertTrue:
assertTrue
assertTrue($x < $y);