Merge branch 'subtree'
[fanfix.git] / src / be / nikiroo / utils / test_code / Test.java
index e00da1173129031bda4acefb261379a325c8bf57..8d99cba8d898b38245986687c3f476f4412e4fbf 100644 (file)
@@ -3,10 +3,12 @@ package be.nikiroo.utils.test_code;
 import be.nikiroo.utils.Cache;
 import be.nikiroo.utils.CacheMemory;
 import be.nikiroo.utils.Downloader;
+import be.nikiroo.utils.Proxy;
 import be.nikiroo.utils.main.bridge;
 import be.nikiroo.utils.main.img2aa;
 import be.nikiroo.utils.main.justify;
 import be.nikiroo.utils.test.TestLauncher;
+import be.nikiroo.utils.ui.UIUtils;
 
 /**
  * Tests for nikiroo-utils.
@@ -24,6 +26,8 @@ public class Test extends TestLauncher {
        public Test(String[] args) {
                super("Nikiroo-utils", args);
 
+               // setDetails(true);
+
                addSeries(new ProgressTest(args));
                addSeries(new BundleTest(args));
                addSeries(new IOUtilsTest(args));
@@ -37,16 +41,19 @@ public class Test extends TestLauncher {
                addSeries(new NextableInputStreamTest(args));
                addSeries(new ReplaceInputStreamTest(args));
                addSeries(new BufferedOutputStreamTest(args));
+               addSeries(new ReplaceOutputStreamTest(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;
+               Proxy proxy;
+               UIUtils uiUtils;
        }
 
        /**