You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertTrue(isPrivate(method), methodName + " must be declared 'private'");
116
+
assertTrue(isStatic(method), methodName + " must be declared 'static'");
117
+
assertEquals(void.class, method.getReturnType(), methodName + " must have a 'void' return type");
118
+
119
+
} catch (NoSuchMethodExceptione) {
120
+
fail("Can't find a method with name " + methodName + " in class " + classToFind + " with 2 parameters, first with type 'String', second with type 'String[]'");
0 commit comments