X-Git-Url: http://git.nikiroo.be/?p=nikiroo-utils.git;a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Ftest%2FTest.java;h=b88be7c64095c19e79e4b262f3573f8fe325728a;hp=4340f5f8ac18db11d08a7425a043d7aa4436c571;hb=805005449dacb1e7b825db63836bf100e472ddd0;hpb=86057589d5211fbad4b7cdbcd4dd0f1e3777d4c1 diff --git a/src/be/nikiroo/utils/test/Test.java b/src/be/nikiroo/utils/test/Test.java index 4340f5f..b88be7c 100644 --- a/src/be/nikiroo/utils/test/Test.java +++ b/src/be/nikiroo/utils/test/Test.java @@ -1,16 +1,35 @@ package be.nikiroo.utils.test; +import be.nikiroo.utils.Cache; +import be.nikiroo.utils.Downloader; + /** * 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); 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)); + + // TODO: test cache and downloader + Cache cache = null; + Downloader downloader = null; } /**