Merge branch 'subtree'
[fanfix.git] / src / be / nikiroo / utils / test_code / Test.java
index 24d6bba5fd908efe3b18750a8027f213d5651fe5..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));
@@ -36,16 +40,20 @@ public class Test extends TestLauncher {
                addSeries(new BufferedInputStreamTest(args));
                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;
        }
 
        /**