b15fd87ac21e8bfa72c1a89e9f168c16ad9ee9d9
[nikiroo-utils.git] / src / be / nikiroo / utils / test / Test.java
1 package be.nikiroo.utils.test;
2
3 import be.nikiroo.utils.Cache;
4 import be.nikiroo.utils.Downloader;
5 import be.nikiroo.utils.main.bridge;
6 import be.nikiroo.utils.main.img2aa;
7 import be.nikiroo.utils.main.justify;
8
9 /**
10 * Tests for nikiroo-utils.
11 *
12 * @author niki
13 */
14 public class Test extends TestLauncher {
15 /**
16 * Start the tests.
17 *
18 * @param args
19 * the arguments (which are passed as-is to the other test
20 * classes)
21 */
22 public Test(String[] args) {
23 super("Nikiroo-utils", args);
24
25 /*
26 addSeries(new ProgressTest(args));
27 addSeries(new BundleTest(args));
28 addSeries(new IOUtilsTest(args));
29 addSeries(new VersionTest(args));
30 addSeries(new SerialTest(args));
31 addSeries(new SerialServerTest(args));
32 */
33 addSeries(new StringUtilsTest(args));
34 /*
35 addSeries(new TempFilesTest(args));
36 */
37
38 // TODO: test cache and downloader
39 Cache cache = null;
40 Downloader downloader = null;
41
42 // To include the sources:
43 img2aa siu;
44 justify ssu;
45 bridge aa;
46 }
47
48 /**
49 * Main entry point of the program.
50 *
51 * @param args
52 * the arguments passed to the {@link TestLauncher}s.
53 */
54 static public void main(String[] args) {
55 System.exit(new Test(args).launch());
56 }
57 }