Example:
new MethodNameAndParameterLikeMatcher("testMethod", int.class, String.class) would match the following methods.
testMethod(int p1, String p2)
testMethod(int p1, String p2, String p3)
However, it would not match the following methods.
testMethod(int p1)
testMethod(String p1, int p2)
|
|