Version 1.3.1: new Version class
[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 public Test(String[] args) {
10 super("Nikiroo-utils", args);
11
12 addSeries(new ProgressTest(args));
13 addSeries(new BundleTest(args));
14 addSeries(new IOUtilsTest(args));
15 addSeries(new VersionTest(args));
16 }
17
18 /**
19 * Main entry point of the program.
20 *
21 * @param args
22 * the arguments passed to the {@link TestLauncher}s.
23 */
24 static public void main(String[] args) {
25 System.exit(new Test(args).launch());
26 }
27 }