[Mathlib-commitlog] SF.net SVN: mathlib:[689] JMathLib/trunk/src/jmathlibtests
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-17 18:16:03
|
Revision: 689
http://mathlib.svn.sourceforge.net/mathlib/?rev=689&view=rev
Author: st_mueller
Date: 2009-01-17 18:16:01 +0000 (Sat, 17 Jan 2009)
Log Message:
-----------
added more directories
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/AllTests.java
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/plugins/
JMathLib/trunk/src/jmathlibtests/plugins/AllTests.java
JMathLib/trunk/src/jmathlibtests/resourcebundles/
JMathLib/trunk/src/jmathlibtests/resourcebundles/AllTests.java
JMathLib/trunk/src/jmathlibtests/ui/
JMathLib/trunk/src/jmathlibtests/ui/AllTests.java
Modified: JMathLib/trunk/src/jmathlibtests/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/AllTests.java 2009-01-17 18:13:29 UTC (rev 688)
+++ JMathLib/trunk/src/jmathlibtests/AllTests.java 2009-01-17 18:16:01 UTC (rev 689)
@@ -17,8 +17,10 @@
/* include subdirectories here */
suite.addTest(jmathlibtests.scripts.AllTests.suite());
suite.addTest(jmathlibtests.core.AllTests.suite());
+ suite.addTest(jmathlibtests.plugins.AllTests.suite());
+ suite.addTest(jmathlibtests.resourcebundles.AllTests.suite());
suite.addTest(jmathlibtests.toolbox.AllTests.suite());
-
+ suite.addTest(jmathlibtests.ui.AllTests.suite());
/* include tests in this directory here */
//suite.addTest(MathLib.Tools.TestSuite.Interpreter.testParser.suite());
Added: JMathLib/trunk/src/jmathlibtests/plugins/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/plugins/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/plugins/AllTests.java 2009-01-17 18:16:01 UTC (rev 689)
@@ -0,0 +1,27 @@
+package jmathlibtests.plugins;
+
+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("plugins");
+
+ /* include subdirectories here */
+ //suite.addTest(jmathlibtests.core.functions.AllTests.suite());
+
+
+ /* include tests in this directory here */
+ //suite.addTest(MathLib.Tools.TestSuite.Interpreter.testParser.suite());
+
+ return suite;
+ }
+}
+
Added: JMathLib/trunk/src/jmathlibtests/resourcebundles/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/resourcebundles/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/resourcebundles/AllTests.java 2009-01-17 18:16:01 UTC (rev 689)
@@ -0,0 +1,27 @@
+package jmathlibtests.resourcebundles;
+
+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("resourcebundles");
+
+ /* include subdirectories here */
+ //suite.addTest(jmathlibtests.core.functions.AllTests.suite());
+
+
+ /* include tests in this directory here */
+ //suite.addTest(MathLib.Tools.TestSuite.Interpreter.testParser.suite());
+
+ return suite;
+ }
+}
+
Added: JMathLib/trunk/src/jmathlibtests/ui/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/ui/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/ui/AllTests.java 2009-01-17 18:16:01 UTC (rev 689)
@@ -0,0 +1,27 @@
+package jmathlibtests.ui;
+
+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("ui");
+
+ /* include subdirectories here */
+ //suite.addTest(jmathlibtests.core.functions.AllTests.suite());
+
+
+ /* include tests in this directory here */
+ //suite.addTest(MathLib.Tools.TestSuite.Interpreter.testParser.suite());
+
+ return suite;
+ }
+}
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|