(Executable executable)
| 223 | } |
| 224 | |
| 225 | public static void assertDoesNotThrow(Executable executable) { |
| 226 | try { |
| 227 | executable.execute(); |
| 228 | runner.pass(); |
| 229 | } catch (Exception e) { |
| 230 | runner.fail("Did not expect exception, but caught '" + e + "'"); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | |
| 235 | public static void testClass(Class<? extends Executable> cls) { |
no test coverage detected