()
| 62 | |
| 63 | // should fail -- catches E, but E not thrown |
| 64 | public void testFail3() { |
| 65 | try { |
| 66 | for (int i = 0; i < 1000; i++) |
| 67 | for (int j = i; j < 1000; j++) |
| 68 | throwsNothing(); |
| 69 | IOException e = new IOException(); |
| 70 | throw e; |
| 71 | } catch (Exception e) { |
| 72 | dontTriggerEmptyExceptionHandler(); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | // should fail -- catches E, but E not thrown |
| 77 | public void testFail4() { |
nothing calls this directly
no test coverage detected