Version 3.1.0: ServerBridge
[nikiroo-utils.git] / src / be / nikiroo / utils / test / Test.java
index 9833225ed2d1e9f61338cf5d824930b5fb045dbb..4f20182093dc08eb7dbb5ac49c7d094d264f8d93 100644 (file)
@@ -6,12 +6,23 @@ package be.nikiroo.utils.test;
  * @author niki
  */
 public class Test extends TestLauncher {
+       /**
+        * Start the tests.
+        * 
+        * @param args
+        *            the arguments (which are passed as-is to the other test
+        *            classes)
+        */
        public Test(String[] args) {
                super("Nikiroo-utils", args);
 
                addSeries(new ProgressTest(args));
                addSeries(new BundleTest(args));
                addSeries(new IOUtilsTest(args));
+               addSeries(new VersionTest(args));
+               addSeries(new SerialTest(args));
+               addSeries(new SerialServerTest(args));
+               addSeries(new StringUtilsTest(args));
        }
 
        /**