[Mathlib-commitlog] SF.net SVN: mathlib:[688] JMathLib/trunk/src/jmathlibtests/core
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-17 18:13:34
|
Revision: 688
http://mathlib.svn.sourceforge.net/mathlib/?rev=688&view=rev
Author: st_mueller
Date: 2009-01-17 18:13:29 +0000 (Sat, 17 Jan 2009)
Log Message:
-----------
added more directories
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/core/AllTests.java
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/core/functions/
JMathLib/trunk/src/jmathlibtests/core/functions/AllTests.java
JMathLib/trunk/src/jmathlibtests/core/interfaces/
JMathLib/trunk/src/jmathlibtests/core/interfaces/AllTests.java
Modified: JMathLib/trunk/src/jmathlibtests/core/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/core/AllTests.java 2009-01-14 20:37:21 UTC (rev 687)
+++ JMathLib/trunk/src/jmathlibtests/core/AllTests.java 2009-01-17 18:13:29 UTC (rev 688)
@@ -15,8 +15,10 @@
TestSuite suite= new TestSuite("core");
/* include subdirectories here */
+ suite.addTest(jmathlibtests.core.functions.AllTests.suite());
suite.addTest(jmathlibtests.core.graphics.AllTests.suite());
- suite.addTest(jmathlibtests.core.interpreter.AllTests.suite());
+ suite.addTest(jmathlibtests.core.interfaces.AllTests.suite());
+ suite.addTest(jmathlibtests.core.interpreter.AllTests.suite());
suite.addTest(jmathlibtests.core.tokens.AllTests.suite());
Added: JMathLib/trunk/src/jmathlibtests/core/functions/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/core/functions/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/core/functions/AllTests.java 2009-01-17 18:13:29 UTC (rev 688)
@@ -0,0 +1,27 @@
+package jmathlibtests.core.functions;
+
+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("functions");
+
+ /* include subdirectories here */
+ //suite.addTest(jmathlibtests.core.graphics.AllTests.suite());
+
+
+ /* include tests in this directory here */
+ //suite.addTest(MathLib.Tools.TestSuite.Interpreter.testParser.suite());
+
+ return suite;
+ }
+}
+
Added: JMathLib/trunk/src/jmathlibtests/core/interfaces/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/core/interfaces/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/core/interfaces/AllTests.java 2009-01-17 18:13:29 UTC (rev 688)
@@ -0,0 +1,27 @@
+package jmathlibtests.core.interfaces;
+
+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("interfaces");
+
+ /* include subdirectories here */
+ //suite.addTest(jmathlibtests.core.graphics.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.
|