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