Update to version 1.5.0 (breaking Bundle/Meta)
[nikiroo-utils.git] / src / be / nikiroo / utils / test / Test.java
index df53648ce125ae32be26eba468df310189056fb8..16829559e6453525e390c8266f3e01cf3b1fa3ea 100644 (file)
@@ -6,6 +6,13 @@ 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);
 
@@ -13,6 +20,8 @@ public class Test extends TestLauncher {
                addSeries(new BundleTest(args));
                addSeries(new IOUtilsTest(args));
                addSeries(new VersionTest(args));
+               addSeries(new SerialTest(args));
+               addSeries(new StringUtilsTest(args));
        }
 
        /**