9833225ed2d1e9f61338cf5d824930b5fb045dbb
[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 }
16
17 /**
18 * Main entry point of the program.
19 *
20 * @param args
21 * the arguments passed to the {@link TestLauncher}s.
22 */
23 static public void main(String[] args) {
24 System.exit(new Test(args).launch());
25 }
26 }