How do you invoke a static java method when one of the parameters for Method invoke invoke(Object obj, Object[] args), requires an object parameter?
For example
Here I have a section of code that checks a class and locates any static methods that have no parameters, a return type of Boolean and starts with the name "test". I am trying to invoke such methods to see if they return true though, and I am at odds at how to do so.
for (int i = 0; i < Class.forName(name).getDeclaredMethods().length; i++) {
Method method = Class.forName(name).getDeclaredMethods()[i];
if (method.getParameterTypes().length == 0
&& method.getReturnType().getName() == "boolean"
&& method.getName().startsWith("test", 0)) {
if (Class.forName(name).getDeclaredMethods()[i].invoke()==true)
System.out.println("Test" + " " + Class.forName(name).getDeclaredMethods()[i].getName() + " " + "succeeded");
}
}