astra.ASTRARunTestCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astra-maven-plugin Show documentation
Show all versions of astra-maven-plugin Show documentation
This plugin can be used to support building of ASTRA applications.
package astra;
import java.io.File;
import java.util.List;
public class ASTRARunTestCmd extends AbstractCompilerCmd {
public ASTRARunTestCmd(File baseDir, List classpath) {
super(baseDir, classpath);
}
public String[] getCommand() {
return new String[] { "java", "-cp", getClasspath(), "astra.unit.TestRunner"};
}
}