Version 4.0.0: java.awt dependencies move
[nikiroo-utils.git] / src / be / nikiroo / utils / test / Test.java
CommitLineData
80383c14
NR
1package be.nikiroo.utils.test;
2
80500544
NR
3import be.nikiroo.utils.Cache;
4import be.nikiroo.utils.Downloader;
5
80383c14
NR
6/**
7 * Tests for nikiroo-utils.
8 *
9 * @author niki
10 */
11public class Test extends TestLauncher {
db31c358
NR
12 /**
13 * Start the tests.
14 *
15 * @param args
16 * the arguments (which are passed as-is to the other test
17 * classes)
18 */
80383c14
NR
19 public Test(String[] args) {
20 super("Nikiroo-utils", args);
21
86057589 22 addSeries(new ProgressTest(args));
80383c14 23 addSeries(new BundleTest(args));
16d59378 24 addSeries(new IOUtilsTest(args));
32ae2079 25 addSeries(new VersionTest(args));
db31c358 26 addSeries(new SerialTest(args));
8537d55a 27 addSeries(new SerialServerTest(args));
db31c358 28 addSeries(new StringUtilsTest(args));
80500544
NR
29
30 // TODO: test cache and downloader
31 Cache cache = null;
32 Downloader downloader = null;
80383c14
NR
33 }
34
35 /**
36 * Main entry point of the program.
37 *
38 * @param args
39 * the arguments passed to the {@link TestLauncher}s.
40 */
41 static public void main(String[] args) {
42 System.exit(new Test(args).launch());
43 }
44}