package be.nikiroo.utils.test; /** * Tests for nikiroo-utils. * * @author niki */ public class Test extends TestLauncher { public Test(String[] args) { super("Nikiroo-utils", args); addSeries(new ProgressTest(args)); addSeries(new BundleTest(args)); addSeries(new IOUtilsTest(args)); } /** * Main entry point of the program. * * @param args * the arguments passed to the {@link TestLauncher}s. */ static public void main(String[] args) { System.exit(new Test(args).launch()); } }