X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Ftest%2FTest.java;h=14c7af3cc71f7ec93a7ff1277f02e8beaf189bd5;hb=5247b37be182c0c2a1ec7a78257d036fedd58cd4;hp=df53648ce125ae32be26eba468df310189056fb8;hpb=32ae20790403c7bce40bf278db8ca0258623945c;p=nikiroo-utils.git diff --git a/src/be/nikiroo/utils/test/Test.java b/src/be/nikiroo/utils/test/Test.java index df53648..14c7af3 100644 --- a/src/be/nikiroo/utils/test/Test.java +++ b/src/be/nikiroo/utils/test/Test.java @@ -1,11 +1,24 @@ package be.nikiroo.utils.test; +import be.nikiroo.utils.Cache; +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); @@ -13,6 +26,19 @@ public class Test extends TestLauncher { 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; + Downloader downloader = null; + + // To include the sources: + img2aa siu; + justify ssu; + bridge aa; } /**