All Downloads are FREE. Search and download functionalities are using the official Maven repository.

astra.ASTRARunTestCmd Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
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"};
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy