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