(Object expected)
| 90 | } |
| 91 | |
| 92 | public static void assertNull(Object expected) { |
| 93 | if (expected != null) |
| 94 | runner.fail("Expected '" + expected + "' == 'null'"); |
| 95 | else |
| 96 | runner.pass(); |
| 97 | } |
| 98 | |
| 99 | public static void assertClose(float expected, float actual, float epsilon) { |
| 100 | try { |
no test coverage detected