1 package be
.nikiroo
.utils
.test
;
4 * Tests for nikiroo-utils.
8 public class Test
extends TestLauncher
{
13 * the arguments (which are passed as-is to the other test
16 public Test(String
[] args
) {
17 super("Nikiroo-utils", args
);
19 addSeries(new ProgressTest(args
));
20 addSeries(new BundleTest(args
));
21 addSeries(new IOUtilsTest(args
));
22 addSeries(new VersionTest(args
));
23 addSeries(new SerialTest(args
));
24 addSeries(new StringUtilsTest(args
));
28 * Main entry point of the program.
31 * the arguments passed to the {@link TestLauncher}s.
33 static public void main(String
[] args
) {
34 System
.exit(new Test(args
).launch());