Thread: [Mathlib-commitlog] SF.net SVN: mathlib:[526] JMathLib/trunk/src/jmathlibtests/toolbox
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2008-12-07 18:27:15
|
Revision: 526
http://mathlib.svn.sourceforge.net/mathlib/?rev=526&view=rev
Author: st_mueller
Date: 2008-12-07 18:27:08 +0000 (Sun, 07 Dec 2008)
Log Message:
-----------
added tearDown() method to test cases
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/toolbox/test/testUserFunctions.java
JMathLib/trunk/src/jmathlibtests/toolbox/time/testTic.java
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/test/testUserFunctions.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/test/testUserFunctions.java 2008-12-06 16:58:23 UTC (rev 525)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/test/testUserFunctions.java 2008-12-07 18:27:08 UTC (rev 526)
@@ -26,6 +26,9 @@
{
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public void testUserFunction001()
{
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/time/testTic.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/time/testTic.java 2008-12-06 16:58:23 UTC (rev 525)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/time/testTic.java 2008-12-07 18:27:08 UTC (rev 526)
@@ -15,6 +15,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testTic.class);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-12-07 18:28:07
|
Revision: 527
http://mathlib.svn.sourceforge.net/mathlib/?rev=527&view=rev
Author: st_mueller
Date: 2008-12-07 18:27:56 +0000 (Sun, 07 Dec 2008)
Log Message:
-----------
added tearDown() method to test cases
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testDerivative.java
JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testExpand.java
JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testFactorize.java
JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testIntegral.java
JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testSimplify.java
JMathLib/trunk/src/jmathlibtests/toolbox/testFunctions.java
JMathLib/trunk/src/jmathlibtests/toolbox/testStandardFunctions.java
JMathLib/trunk/src/jmathlibtests/toolbox/testUserFunction.java
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testDerivative.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testDerivative.java 2008-12-07 18:27:08 UTC (rev 526)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testDerivative.java 2008-12-07 18:27:56 UTC (rev 527)
@@ -19,6 +19,9 @@
ml.executeExpression("x=sym('x')");
ml.executeExpression("y=sym('y')");
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testDerivative.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testExpand.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testExpand.java 2008-12-07 18:27:08 UTC (rev 526)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testExpand.java 2008-12-07 18:27:56 UTC (rev 527)
@@ -19,6 +19,9 @@
ml.executeExpression("x=sym('x')");
ml.executeExpression("y=sym('y')");
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testExpand.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testFactorize.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testFactorize.java 2008-12-07 18:27:08 UTC (rev 526)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testFactorize.java 2008-12-07 18:27:56 UTC (rev 527)
@@ -19,6 +19,9 @@
ml.executeExpression("x=sym('x')");
ml.executeExpression("y=sym('y')");
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testFactorize.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testIntegral.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testIntegral.java 2008-12-07 18:27:08 UTC (rev 526)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testIntegral.java 2008-12-07 18:27:56 UTC (rev 527)
@@ -19,6 +19,9 @@
ml.executeExpression("x=sym('x')");
ml.executeExpression("y=sym('y')");
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testIntegral.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testSimplify.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testSimplify.java 2008-12-07 18:27:08 UTC (rev 526)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/symbolic/testSimplify.java 2008-12-07 18:27:56 UTC (rev 527)
@@ -19,6 +19,9 @@
ml.executeExpression("x=sym('x')");
ml.executeExpression("y=sym('y')");
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testSimplify.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/testFunctions.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/testFunctions.java 2008-12-07 18:27:08 UTC (rev 526)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/testFunctions.java 2008-12-07 18:27:56 UTC (rev 527)
@@ -16,6 +16,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testFunctions.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/testStandardFunctions.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/testStandardFunctions.java 2008-12-07 18:27:08 UTC (rev 526)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/testStandardFunctions.java 2008-12-07 18:27:56 UTC (rev 527)
@@ -16,6 +16,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testStandardFunctions.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/testUserFunction.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/testUserFunction.java 2008-12-07 18:27:08 UTC (rev 526)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/testUserFunction.java 2008-12-07 18:27:56 UTC (rev 527)
@@ -15,6 +15,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testUserFunction.class);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-12-07 18:30:59
|
Revision: 531
http://mathlib.svn.sourceforge.net/mathlib/?rev=531&view=rev
Author: st_mueller
Date: 2008-12-07 18:30:51 +0000 (Sun, 07 Dec 2008)
Log Message:
-----------
added tearDown() method to test cases
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/toolbox/set/testComplement.java
JMathLib/trunk/src/jmathlibtests/toolbox/set/testCreate_set.java
JMathLib/trunk/src/jmathlibtests/toolbox/specfun/testPerms.java
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/set/testComplement.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/set/testComplement.java 2008-12-07 18:30:32 UTC (rev 530)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/set/testComplement.java 2008-12-07 18:30:51 UTC (rev 531)
@@ -16,6 +16,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testComplement.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/set/testCreate_set.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/set/testCreate_set.java 2008-12-07 18:30:32 UTC (rev 530)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/set/testCreate_set.java 2008-12-07 18:30:51 UTC (rev 531)
@@ -16,6 +16,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testCreate_set.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/specfun/testPerms.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/specfun/testPerms.java 2008-12-07 18:30:32 UTC (rev 530)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/specfun/testPerms.java 2008-12-07 18:30:51 UTC (rev 531)
@@ -16,6 +16,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testPerms.class);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-12-07 18:32:24
|
Revision: 532
http://mathlib.svn.sourceforge.net/mathlib/?rev=532&view=rev
Author: st_mueller
Date: 2008-12-07 18:32:20 +0000 (Sun, 07 Dec 2008)
Log Message:
-----------
added tearDown() method to test cases
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/toolbox/jmathlib/system/testUsage.java
JMathLib/trunk/src/jmathlibtests/toolbox/linearalgebra/testTrace.java
JMathLib/trunk/src/jmathlibtests/toolbox/linearalgebra/testVec.java
JMathLib/trunk/src/jmathlibtests/toolbox/net/testUrlread.java
JMathLib/trunk/src/jmathlibtests/toolbox/polynomial/testBinomial.java
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/jmathlib/system/testUsage.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/jmathlib/system/testUsage.java 2008-12-07 18:30:51 UTC (rev 531)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/jmathlib/system/testUsage.java 2008-12-07 18:32:20 UTC (rev 532)
@@ -15,6 +15,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testUsage.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/linearalgebra/testTrace.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/linearalgebra/testTrace.java 2008-12-07 18:30:51 UTC (rev 531)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/linearalgebra/testTrace.java 2008-12-07 18:32:20 UTC (rev 532)
@@ -17,6 +17,10 @@
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
+
public static Test suite() {
return new TestSuite(testTrace.class);
}
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/linearalgebra/testVec.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/linearalgebra/testVec.java 2008-12-07 18:30:51 UTC (rev 531)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/linearalgebra/testVec.java 2008-12-07 18:32:20 UTC (rev 532)
@@ -17,6 +17,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testVec.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/net/testUrlread.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/net/testUrlread.java 2008-12-07 18:30:51 UTC (rev 531)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/net/testUrlread.java 2008-12-07 18:32:20 UTC (rev 532)
@@ -15,6 +15,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testUrlread.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/polynomial/testBinomial.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/polynomial/testBinomial.java 2008-12-07 18:30:51 UTC (rev 531)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/polynomial/testBinomial.java 2008-12-07 18:32:20 UTC (rev 532)
@@ -16,6 +16,10 @@
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
+
public static Test suite() {
return new TestSuite(testBinomial.class);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-12-07 18:42:18
|
Revision: 537
http://mathlib.svn.sourceforge.net/mathlib/?rev=537&view=rev
Author: st_mueller
Date: 2008-12-07 18:42:14 +0000 (Sun, 07 Dec 2008)
Log Message:
-----------
added tearDown() method to test cases
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/toolbox/io/testCVSRead.java
JMathLib/trunk/src/jmathlibtests/toolbox/jmathlib/graphics/graph3d/testMeshgrid.java
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/io/testCVSRead.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/io/testCVSRead.java 2008-12-07 18:41:16 UTC (rev 536)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/io/testCVSRead.java 2008-12-07 18:42:14 UTC (rev 537)
@@ -16,6 +16,10 @@
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
+
public static Test suite() {
return new TestSuite(testCVSRead.class);
}
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/jmathlib/graphics/graph3d/testMeshgrid.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/jmathlib/graphics/graph3d/testMeshgrid.java 2008-12-07 18:41:16 UTC (rev 536)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/jmathlib/graphics/graph3d/testMeshgrid.java 2008-12-07 18:42:14 UTC (rev 537)
@@ -16,6 +16,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testMeshgrid.class);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-12-07 18:48:29
|
Revision: 540
http://mathlib.svn.sourceforge.net/mathlib/?rev=540&view=rev
Author: st_mueller
Date: 2008-12-07 18:48:28 +0000 (Sun, 07 Dec 2008)
Log Message:
-----------
added tearDown() method to test cases
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/toolbox/control/system/testAbcddim.java
JMathLib/trunk/src/jmathlibtests/toolbox/control/system/testIs_abcd.java
JMathLib/trunk/src/jmathlibtests/toolbox/crypto/testAES.java
JMathLib/trunk/src/jmathlibtests/toolbox/deprecated/testIsstr.java
JMathLib/trunk/src/jmathlibtests/toolbox/finance/testFvl.java
JMathLib/trunk/src/jmathlibtests/toolbox/funfun/testFeval.java
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/control/system/testAbcddim.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/control/system/testAbcddim.java 2008-12-07 18:47:41 UTC (rev 539)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/control/system/testAbcddim.java 2008-12-07 18:48:28 UTC (rev 540)
@@ -9,13 +9,19 @@
public testAbcddim(String name) {
super(name);
}
- public static void main (String[] args) {
+
+ public static void main (String[] args) {
jmathlib.tools.junit.textui.TestRunner.run (suite());
}
+
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
+
public static Test suite() {
return new TestSuite(testAbcddim.class);
}
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/control/system/testIs_abcd.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/control/system/testIs_abcd.java 2008-12-07 18:47:41 UTC (rev 539)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/control/system/testIs_abcd.java 2008-12-07 18:48:28 UTC (rev 540)
@@ -15,6 +15,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testIs_abcd.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/crypto/testAES.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/crypto/testAES.java 2008-12-07 18:47:41 UTC (rev 539)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/crypto/testAES.java 2008-12-07 18:48:28 UTC (rev 540)
@@ -16,6 +16,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testAES.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/deprecated/testIsstr.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/deprecated/testIsstr.java 2008-12-07 18:47:41 UTC (rev 539)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/deprecated/testIsstr.java 2008-12-07 18:48:28 UTC (rev 540)
@@ -15,6 +15,9 @@
protected void setUp() {
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
public static Test suite() {
return new TestSuite(testIsstr.class);
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/finance/testFvl.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/finance/testFvl.java 2008-12-07 18:47:41 UTC (rev 539)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/finance/testFvl.java 2008-12-07 18:48:28 UTC (rev 540)
@@ -16,6 +16,10 @@
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
+
public static Test suite() {
return new TestSuite(testFvl.class);
}
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/funfun/testFeval.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/funfun/testFeval.java 2008-12-07 18:47:41 UTC (rev 539)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/funfun/testFeval.java 2008-12-07 18:48:28 UTC (rev 540)
@@ -16,6 +16,10 @@
ml = new Interpreter(true);
}
+ protected void tearDown() {
+ ml = null;
+ }
+
public static Test suite() {
return new TestSuite(testFeval.class);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-01-06 13:16:08
|
Revision: 630
http://mathlib.svn.sourceforge.net/mathlib/?rev=630&view=rev
Author: st_mueller
Date: 2009-01-06 13:16:07 +0000 (Tue, 06 Jan 2009)
Log Message:
-----------
more directories for tests
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/toolbox/video/
JMathLib/trunk/src/jmathlibtests/toolbox/video/AllTests.java
Added: JMathLib/trunk/src/jmathlibtests/toolbox/video/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/video/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/video/AllTests.java 2009-01-06 13:16:07 UTC (rev 630)
@@ -0,0 +1,25 @@
+package jmathlibtests.toolbox.video;
+
+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("video functions");
+
+ /* include subdirectories here */
+ // none
+
+ /* include tests in this directory here */
+ // none yet
+
+ return suite;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-01-06 13:16:25
|
Revision: 631
http://mathlib.svn.sourceforge.net/mathlib/?rev=631&view=rev
Author: st_mueller
Date: 2009-01-06 13:16:23 +0000 (Tue, 06 Jan 2009)
Log Message:
-----------
more directories for tests
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/toolbox/splines/
JMathLib/trunk/src/jmathlibtests/toolbox/splines/AllTests.java
Added: JMathLib/trunk/src/jmathlibtests/toolbox/splines/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/splines/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/splines/AllTests.java 2009-01-06 13:16:23 UTC (rev 631)
@@ -0,0 +1,25 @@
+package jmathlibtests.toolbox.splines;
+
+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("splines functions");
+
+ /* include subdirectories here */
+ // none
+
+ /* include tests in this directory here */
+ // none yet
+
+ return suite;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-01-06 13:16:48
|
Revision: 632
http://mathlib.svn.sourceforge.net/mathlib/?rev=632&view=rev
Author: st_mueller
Date: 2009-01-06 13:16:47 +0000 (Tue, 06 Jan 2009)
Log Message:
-----------
more directories for tests
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/toolbox/engine/
JMathLib/trunk/src/jmathlibtests/toolbox/engine/AllTests.java
Added: JMathLib/trunk/src/jmathlibtests/toolbox/engine/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/engine/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/engine/AllTests.java 2009-01-06 13:16:47 UTC (rev 632)
@@ -0,0 +1,25 @@
+package jmathlibtests.toolbox.engine;
+
+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("engine functions");
+
+ /* include subdirectories here */
+ // none
+
+ /* include tests in this directory here */
+ // none yet
+
+ return suite;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-01-06 13:17:04
|
Revision: 633
http://mathlib.svn.sourceforge.net/mathlib/?rev=633&view=rev
Author: st_mueller
Date: 2009-01-06 13:17:03 +0000 (Tue, 06 Jan 2009)
Log Message:
-----------
more directories for tests
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/toolbox/ftp/
JMathLib/trunk/src/jmathlibtests/toolbox/ftp/AllTests.java
Added: JMathLib/trunk/src/jmathlibtests/toolbox/ftp/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/ftp/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/ftp/AllTests.java 2009-01-06 13:17:03 UTC (rev 633)
@@ -0,0 +1,25 @@
+package jmathlibtests.toolbox.ftp;
+
+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("ftp functions");
+
+ /* include subdirectories here */
+ // none
+
+ /* include tests in this directory here */
+ // none yet
+
+ return suite;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-01-06 13:17:28
|
Revision: 634
http://mathlib.svn.sourceforge.net/mathlib/?rev=634&view=rev
Author: st_mueller
Date: 2009-01-06 13:17:20 +0000 (Tue, 06 Jan 2009)
Log Message:
-----------
more directories for tests
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/toolbox/integration/
JMathLib/trunk/src/jmathlibtests/toolbox/integration/AllTests.java
Added: JMathLib/trunk/src/jmathlibtests/toolbox/integration/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/integration/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/integration/AllTests.java 2009-01-06 13:17:20 UTC (rev 634)
@@ -0,0 +1,25 @@
+package jmathlibtests.toolbox.integration;
+
+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("integration functions");
+
+ /* include subdirectories here */
+ // none
+
+ /* include tests in this directory here */
+ // none yet
+
+ return suite;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-01-06 13:17:42
|
Revision: 635
http://mathlib.svn.sourceforge.net/mathlib/?rev=635&view=rev
Author: st_mueller
Date: 2009-01-06 13:17:40 +0000 (Tue, 06 Jan 2009)
Log Message:
-----------
more directories for tests
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/toolbox/ode/
JMathLib/trunk/src/jmathlibtests/toolbox/ode/AllTests.java
Added: JMathLib/trunk/src/jmathlibtests/toolbox/ode/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/ode/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/ode/AllTests.java 2009-01-06 13:17:40 UTC (rev 635)
@@ -0,0 +1,25 @@
+package jmathlibtests.toolbox.ode;
+
+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("ode functions");
+
+ /* include subdirectories here */
+ // none
+
+ /* include tests in this directory here */
+ // none yet
+
+ return suite;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-01-06 13:18:01
|
Revision: 636
http://mathlib.svn.sourceforge.net/mathlib/?rev=636&view=rev
Author: st_mueller
Date: 2009-01-06 13:18:00 +0000 (Tue, 06 Jan 2009)
Log Message:
-----------
more directories for tests
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/toolbox/physical_constants/
JMathLib/trunk/src/jmathlibtests/toolbox/physical_constants/AllTests.java
Added: JMathLib/trunk/src/jmathlibtests/toolbox/physical_constants/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/physical_constants/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/physical_constants/AllTests.java 2009-01-06 13:18:00 UTC (rev 636)
@@ -0,0 +1,25 @@
+package jmathlibtests.toolbox.physical_constants;
+
+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("physical_constants functions");
+
+ /* include subdirectories here */
+ // none
+
+ /* include tests in this directory here */
+ // none yet
+
+ return suite;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-01-06 13:18:18
|
Revision: 637
http://mathlib.svn.sourceforge.net/mathlib/?rev=637&view=rev
Author: st_mueller
Date: 2009-01-06 13:18:17 +0000 (Tue, 06 Jan 2009)
Log Message:
-----------
more directories for tests
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/toolbox/quaternion/
JMathLib/trunk/src/jmathlibtests/toolbox/quaternion/AllTests.java
Added: JMathLib/trunk/src/jmathlibtests/toolbox/quaternion/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/quaternion/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/quaternion/AllTests.java 2009-01-06 13:18:17 UTC (rev 637)
@@ -0,0 +1,25 @@
+package jmathlibtests.toolbox.quaternion;
+
+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("quaternion functions");
+
+ /* include subdirectories here */
+ // none
+
+ /* include tests in this directory here */
+ // none yet
+
+ return suite;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-01-23 20:09:11
|
Revision: 730
http://mathlib.svn.sourceforge.net/mathlib/?rev=730&view=rev
Author: st_mueller
Date: 2009-01-23 20:09:07 +0000 (Fri, 23 Jan 2009)
Log Message:
-----------
added more tests
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/toolbox/AllTests.java
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/toolbox/toolbox_skeleton/
JMathLib/trunk/src/jmathlibtests/toolbox/toolbox_skeleton/AllTests.java
JMathLib/trunk/src/jmathlibtests/toolbox/toolbox_skeleton/testTemplate.java
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/AllTests.java 2009-01-23 19:42:11 UTC (rev 729)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/AllTests.java 2009-01-23 20:09:07 UTC (rev 730)
@@ -49,6 +49,7 @@
//suite.addTest(jmathlibtests.toolbox.symbolic.AllTests.suite());
suite.addTest(jmathlibtests.toolbox.test.AllTests.suite());
suite.addTest(jmathlibtests.toolbox.time.AllTests.suite());
+ suite.addTest(jmathlibtests.toolbox.toolbox_skeleton.AllTests.suite());
suite.addTest(jmathlibtests.toolbox.trigonometric.AllTests.suite());
suite.addTest(jmathlibtests.toolbox.video.AllTests.suite());
Added: JMathLib/trunk/src/jmathlibtests/toolbox/toolbox_skeleton/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/toolbox_skeleton/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/toolbox_skeleton/AllTests.java 2009-01-23 20:09:07 UTC (rev 730)
@@ -0,0 +1,25 @@
+package jmathlibtests.toolbox.toolbox_skeleton;
+
+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("time functions");
+
+ /* include subdirectories here */
+ // none
+
+ /* include tests in this directory here */
+ suite.addTest(jmathlibtests.toolbox.toolbox_skeleton.testTemplate.suite());
+
+ return suite;
+ }
+}
Added: JMathLib/trunk/src/jmathlibtests/toolbox/toolbox_skeleton/testTemplate.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/toolbox_skeleton/testTemplate.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/toolbox_skeleton/testTemplate.java 2009-01-23 20:09:07 UTC (rev 730)
@@ -0,0 +1,32 @@
+package jmathlibtests.toolbox.toolbox_skeleton;
+
+import jmathlib.core.interpreter.Interpreter;
+import jmathlib.tools.junit.framework.*;
+
+public class testTemplate extends JMathLibTestCase {
+ protected Interpreter ml;
+
+ public testTemplate(String name) {
+ super(name);
+ }
+ public static void main (String[] args) {
+ jmathlib.tools.junit.textui.TestRunner.run (suite());
+ }
+
+ public static Test suite() {
+ return new TestSuite(testTemplate.class);
+ }
+
+ public void testTemplate01() {
+ assertEvalScalarEquals("a=abs(8)", "a", 8);
+ }
+ public void testTemplate02() {
+ assertEvalScalarEquals("A=abs(88)", "A", 88);
+ }
+ public void testTemplate03() {
+ assertEvalScalarEquals("b=55", "b", 55);
+ }
+
+
+
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-01-24 08:54:52
|
Revision: 735
http://mathlib.svn.sourceforge.net/mathlib/?rev=735&view=rev
Author: st_mueller
Date: 2009-01-24 08:54:41 +0000 (Sat, 24 Jan 2009)
Log Message:
-----------
added more tests
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/toolbox/ftp/AllTests.java
JMathLib/trunk/src/jmathlibtests/toolbox/funfun/AllTests.java
JMathLib/trunk/src/jmathlibtests/toolbox/funfun/testFeval.java
Added Paths:
-----------
JMathLib/trunk/src/jmathlibtests/toolbox/help/
JMathLib/trunk/src/jmathlibtests/toolbox/help/AllTests.java
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/ftp/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/ftp/AllTests.java 2009-01-23 20:33:31 UTC (rev 734)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/ftp/AllTests.java 2009-01-24 08:54:41 UTC (rev 735)
@@ -1,3 +1,12 @@
+/*
+ * This file is part or JMathLib
+ *
+ * Check it out at http://www.jmathlib.de
+ *
+ * Author: Stefan Mueller (st...@he...)
+ * (c) 2007, 2008, 2009
+ */
+
package jmathlibtests.toolbox.ftp;
import jmathlib.tools.junit.framework.*;
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/funfun/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/funfun/AllTests.java 2009-01-23 20:33:31 UTC (rev 734)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/funfun/AllTests.java 2009-01-24 08:54:41 UTC (rev 735)
@@ -1,3 +1,12 @@
+/*
+ * This file is part or JMathLib
+ *
+ * Check it out at http://www.jmathlib.de
+ *
+ * Author: Stefan Mueller (st...@he...)
+ * (c) 2007, 2008, 2009
+ */
+
package jmathlibtests.toolbox.funfun;
import jmathlib.tools.junit.framework.*;
Modified: JMathLib/trunk/src/jmathlibtests/toolbox/funfun/testFeval.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/funfun/testFeval.java 2009-01-23 20:33:31 UTC (rev 734)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/funfun/testFeval.java 2009-01-24 08:54:41 UTC (rev 735)
@@ -1,3 +1,12 @@
+/*
+ * This file is part or JMathLib
+ *
+ * Check it out at http://www.jmathlib.de
+ *
+ * Author: Stefan Mueller (st...@he...)
+ * (c) 2007, 2008, 2009
+ */
+
package jmathlibtests.toolbox.funfun;
import jmathlib.core.interpreter.Interpreter;
Added: JMathLib/trunk/src/jmathlibtests/toolbox/help/AllTests.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/toolbox/help/AllTests.java (rev 0)
+++ JMathLib/trunk/src/jmathlibtests/toolbox/help/AllTests.java 2009-01-24 08:54:41 UTC (rev 735)
@@ -0,0 +1,34 @@
+/*
+ * This file is part or JMathLib
+ *
+ * Check it out at http://www.jmathlib.de
+ *
+ * Author: Stefan Mueller (st...@he...)
+ * (c) 2007, 2008, 2009
+ */
+
+package jmathlibtests.toolbox.help;
+
+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("help functions");
+
+ /* include subdirectories here */
+ // none
+
+ /* include tests in this directory here */
+ // none yet
+
+ return suite;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|