[Mathlib-commitlog] SF.net SVN: mathlib:[735] JMathLib/trunk/src/jmathlibtests/toolbox
Status: Beta
Brought to you by:
st_mueller
|
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.
|