include CacheMemory in test
[nikiroo-utils.git] / src / be / nikiroo / utils / test / Test.java
index 0804039e1b410389c34385a3735e94082017d5ca..1897196f314a4b4cb44bac7b44045bfce414eb27 100644 (file)
@@ -1,15 +1,46 @@
 package be.nikiroo.utils.test;
 
+import be.nikiroo.utils.Cache;
+import be.nikiroo.utils.CacheMemory;
+import be.nikiroo.utils.Downloader;
+import be.nikiroo.utils.main.bridge;
+import be.nikiroo.utils.main.img2aa;
+import be.nikiroo.utils.main.justify;
+
 /**
  * Tests for nikiroo-utils.
  * 
  * @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));
+               addSeries(new TempFilesTest(args));
+
+               // TODO: test cache and downloader
+               Cache cache = null;
+               CacheMemory memcache = null;
+               Downloader downloader = null;
+
+               // To include the sources:
+               img2aa siu;
+               justify ssu;
+               bridge aa;
        }
 
        /**