package jmathlibtests.core.graphics;
import jmathlib.tools.junit.framework.*;
/**
* TestSuite that runs all the tests
*
*/
public class AllTests {
public static void main (String[] args) {
jmathlib.tools.junit.textui.TestRunner.run (suite());
}
public static Test suite ( ) {
TestSuite suite= new TestSuite("core/graphics");
/* include subdirectories here */
suite.addTest(jmathlibtests.core.graphics.axes.AllTests.suite());
suite.addTest(jmathlibtests.core.graphics.properties.AllTests.suite());
/* include tests in this directory here */
//suite.addTest(MathLib.Tools.TestSuite.Interpreter.testParser.suite());
return suite;
}
}