New Utils main classes + ImageUtils fixes
[fanfix.git] / src / be / nikiroo / utils / test / Test.java
index bb08e2b4c19ac94e0b103647ed03e28e18713855..7fe9bbc7c7a1c488e2fd2b1c56eff0ef0fd39f48 100644 (file)
@@ -2,6 +2,8 @@ package be.nikiroo.utils.test;
 
 import be.nikiroo.utils.Cache;
 import be.nikiroo.utils.Downloader;
+import be.nikiroo.utils.main.StartImageUtils;
+import be.nikiroo.utils.main.StartStringUtils;
 
 /**
  * Tests for nikiroo-utils.
@@ -19,19 +21,22 @@ 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 SerialServerTest(args));
-               */addSeries(new StringUtilsTest(args));
-               //addSeries(new TempFilesTest(args));
+               addSeries(new StringUtilsTest(args));
+               addSeries(new TempFilesTest(args));
 
                // TODO: test cache and downloader
                Cache cache = null;
                Downloader downloader = null;
+
+               // To include the sources:
+               StartImageUtils siu;
+               StartStringUtils ssu;
        }
 
        /**