Version 3.1.0: ServerBridge
[nikiroo-utils.git] / src / be / nikiroo / utils / test / Test.java
1 package be.nikiroo.utils.test;
2
3 /**
4 * Tests for nikiroo-utils.
5 *
6 * @author niki
7 */
8 public class Test extends TestLauncher {
9 /**
10 * Start the tests.
11 *
12 * @param args
13 * the arguments (which are passed as-is to the other test
14 * classes)
15 */
16 public Test(String[] args) {
17 super("Nikiroo-utils", args);
18
19 addSeries(new ProgressTest(args));
20 addSeries(new BundleTest(args));
21 addSeries(new IOUtilsTest(args));
22 addSeries(new VersionTest(args));
23 addSeries(new SerialTest(args));
24 addSeries(new SerialServerTest(args));
25 addSeries(new StringUtilsTest(args));
26 }
27
28 /**
29 * Main entry point of the program.
30 *
31 * @param args
32 * the arguments passed to the {@link TestLauncher}s.
33 */
34 static public void main(String[] args) {
35 System.exit(new Test(args).launch());
36 }
37 }