X-Git-Url: http://git.nikiroo.be/?p=fanfix.git;a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Ftest%2FTest.java;fp=src%2Fbe%2Fnikiroo%2Ffanfix%2Ftest%2FTest.java;h=2eaeff061642d0e5e4e833efc384ed7077399df2;hp=0000000000000000000000000000000000000000;hb=92fb0719f84f5b6734b51e528332546d78e9ccec;hpb=d98a29006897a1ae31ff3a039afe9643a48e0704 diff --git a/src/be/nikiroo/fanfix/test/Test.java b/src/be/nikiroo/fanfix/test/Test.java new file mode 100644 index 0000000..2eaeff0 --- /dev/null +++ b/src/be/nikiroo/fanfix/test/Test.java @@ -0,0 +1,24 @@ +package be.nikiroo.fanfix.test; + +import be.nikiroo.utils.test.TestLauncher; + +/** + * Tests for Fanfix. + * + * @author niki + */ +public class Test extends TestLauncher { + public Test(String[] args) { + super("Fanfix (empty: all tests were moved to nikiroo-utils...)", 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()); + } +}