I think it is nice to have some easier, less typing test method function names:
* Test.assertEqualMessage() as is()
* Test.assertNotEqualMessage() as isnt()
* Test.assertMessage() as ok()
This would allow way less typing, eg:
Test.is(needle, haystack, "Needle found in the haystack"); Test.isnt(needle, haystack, "Nope"); Test.ok(error instanceof Lang.ValueOutOfBoundsException, "Correct error is thrown");