Text justification WIP
[nikiroo-utils.git] / src / be / nikiroo / utils / test / Test.java
index 16829559e6453525e390c8266f3e01cf3b1fa3ea..bb08e2b4c19ac94e0b103647ed03e28e18713855 100644 (file)
@@ -1,5 +1,8 @@
 package be.nikiroo.utils.test;
 
+import be.nikiroo.utils.Cache;
+import be.nikiroo.utils.Downloader;
+
 /**
  * Tests for nikiroo-utils.
  * 
@@ -16,12 +19,19 @@ public class Test extends TestLauncher {
        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 StringUtilsTest(args));
+               addSeries(new SerialServerTest(args));
+               */addSeries(new StringUtilsTest(args));
+               //addSeries(new TempFilesTest(args));
+
+               // TODO: test cache and downloader
+               Cache cache = null;
+               Downloader downloader = null;
        }
 
        /**