(Throwable t)
| 59 | } |
| 60 | |
| 61 | public void error(Throwable t) { |
| 62 | maybePrintNewline(); |
| 63 | |
| 64 | asserts++; |
| 65 | errors++; |
| 66 | messages.add("[ ERROR ] Unexpected exception '" + t + "'\n at " + location()); |
| 67 | System.out.print("E"); |
| 68 | } |
| 69 | |
| 70 | public static void assertEquals(Object expected, Object actual) { |
| 71 | try { |
no test coverage detected