X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Ftest%2FTest.java;h=bb08e2b4c19ac94e0b103647ed03e28e18713855;hb=771c4ba4a1c17a95acbfdcbdb489094b04947713;hp=0804039e1b410389c34385a3735e94082017d5ca;hpb=80383c142f85a7850d0fbea418689608fdccac05;p=nikiroo-utils.git diff --git a/src/be/nikiroo/utils/test/Test.java b/src/be/nikiroo/utils/test/Test.java index 0804039..bb08e2b 100644 --- a/src/be/nikiroo/utils/test/Test.java +++ b/src/be/nikiroo/utils/test/Test.java @@ -1,15 +1,37 @@ 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)); + //addSeries(new TempFilesTest(args)); + + // TODO: test cache and downloader + Cache cache = null; + Downloader downloader = null; } /**