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