One method of the interface Test is getTestObjectClass(). It determines the class of the test object which the test is supposed to be executed on.
Class<T> getTestObjectClass();
For example, if a test should run on wiki articles, the method should be implemented like this:
public Class<Article> getTestObjectClass()
Please implement the method getDescription() in a meaningful way, return a concise description about what this test is about. It will be used to generated the documentation table of all available tests of the system, c.f. Doc CIDashboard.
String getDescription();
The actual test processing is executed within the method execute(). The parameters are passed by a String array.
public static int execute(String[] args) throws IOException