(int n)
| 31 | |
| 32 | private static class Foo implements Interface { |
| 33 | public int interfaceMethod(int n) { |
| 34 | if (n < Limit) { |
| 35 | return virtualMethod(n + 1, 1, 2, 3, 4, 5); |
| 36 | } else { |
| 37 | return leafMethod(n); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | public int virtualMethod(int n, int a, int b, int c, int d, int e) { |
| 42 | if (n < Limit) { |
nothing calls this directly
no test coverage detected