()
| 17 | } |
| 18 | |
| 19 | static void testMethod() throws Exception { |
| 20 | Class<U> klass = U.class; |
| 21 | Method foo1 = klass.getDeclaredMethod("foo", int.class); |
| 22 | Method foo2 = klass.getMethod("foo", U.class); |
| 23 | use(foo1, foo2); |
| 24 | } |
| 25 | |
| 26 | static void testGetClass() throws Exception { |
| 27 | U u = new U(); |
no test coverage detected