Version 1.3.1: new Version class
[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 {
9 public Test(String[] args) {
10 super("Nikiroo-utils", args);
11
86057589 12 addSeries(new ProgressTest(args));
80383c14 13 addSeries(new BundleTest(args));
16d59378 14 addSeries(new IOUtilsTest(args));
32ae2079 15 addSeries(new VersionTest(args));
80383c14
NR
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}