Jemmy http://java.net/projects/jemmyで複数のテスト クラスを起動する方法。そのようなコードを使用しようとしましたが、うまくいきません。1 つのテストのみを起動します。
public class Controller {
public static void main(String[] args) {
try {
Class[] testClasses=AllClassesInPackageFinder.getClasses("test");//finds all classes in package with test.
String[] classFullNames= new String[testClasses.length];
for (int i=0; i<testClasses.length; i++){
classFullNames[i]=testClasses[i].getName();
}
org.netbeans.jemmy.Test.main(classFullNames);
} catch (ClassNotFoundException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
}
}