(String[] args)
| 3 | public class GetMethods { |
| 4 | |
| 5 | public static void main(String[] args) throws Exception { |
| 6 | invokeOneArg("foo"); |
| 7 | invokeOneArg("bar"); |
| 8 | } |
| 9 | |
| 10 | static void invokeOneArg(String name) throws Exception { |
| 11 | Method[] methods = J.class.getMethods(); |
nothing calls this directly
no test coverage detected