| base class for Selenium test scripts that hack JUnit so as to be
able to run test methods in the order in which they appear
in the source file. If the class name is "AllTest.java", following
boiler-plate must be included (I said this was a hack :)
static {
clazz = AllTest.class;
}
public AllTest(String name) {
super(name);
}
|