()
| 75 | |
| 76 | // should fail -- catches E, but E not thrown |
| 77 | public void testFail4() { |
| 78 | try { |
| 79 | for (int i = 0; i < 1000; i++) |
| 80 | for (int j = i; j < 1000; j++) |
| 81 | throwsNothing(); |
| 82 | throwsIOException(); |
| 83 | } catch (Exception e) { |
| 84 | dontTriggerEmptyExceptionHandler(); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | // should fail -- catches E, but E not thrown |
| 89 | public void testFail5() { |
nothing calls this directly
no test coverage detected