(Exception ex, Class<? extends Exception> expectedClazz)
| 338 | } |
| 339 | |
| 340 | private void checkCauseInstance(Exception ex, Class<? extends Exception> expectedClazz) { |
| 341 | Assert.assertThat(ex.getCause(), instanceOf(expectedClazz)); |
| 342 | } |
| 343 | |
| 344 | public static void main(String[] args) { |
| 345 | junit.textui.TestRunner.run(MemoryTest.class); |
no outgoing calls
no test coverage detected