Version 3.1.0: ServerBridge
[nikiroo-utils.git] / src / be / nikiroo / utils / test / Test.java
CommitLineData
80383c14
NR
1package be.nikiroo.utils.test;
2
3/**
4 * Tests for nikiroo-utils.
5 *
6 * @author niki
7 */
8public class Test extends TestLauncher {
db31c358
NR
9 /**
10 * Start the tests.
11 *
12 * @param args
13 * the arguments (which are passed as-is to the other test
14 * classes)
15 */
80383c14
NR
16 public Test(String[] args) {
17 super("Nikiroo-utils", args);
18
86057589 19 addSeries(new ProgressTest(args));
80383c14 20 addSeries(new BundleTest(args));
16d59378 21 addSeries(new IOUtilsTest(args));
32ae2079 22 addSeries(new VersionTest(args));
db31c358 23 addSeries(new SerialTest(args));
8537d55a 24 addSeries(new SerialServerTest(args));
db31c358 25 addSeries(new StringUtilsTest(args));
80383c14
NR
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}