Version 1.2.3: getVersion, openResource, fixes
[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));
80383c14
NR
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}