Version 1.1.0
[fanfix.git] / src / be / nikiroo / fanfix / test / Test.java
1 package be.nikiroo.fanfix.test;
2
3 import be.nikiroo.utils.test.TestLauncher;
4
5 /**
6 * Tests for Fanfix.
7 *
8 * @author niki
9 */
10 public class Test extends TestLauncher {
11 public Test(String[] args) {
12 super("Fanfix (empty: all tests were moved to nikiroo-utils...)", args);
13 }
14
15 /**
16 * Main entry point of the program.
17 *
18 * @param args
19 * the arguments passed to the {@link TestLauncher}s.
20 */
21 static public void main(String[] args) {
22 System.exit(new Test(args).launch());
23 }
24 }