Version 1.1.0
[fanfix.git] / src / be / nikiroo / fanfix / test / Test.java
diff --git a/src/be/nikiroo/fanfix/test/Test.java b/src/be/nikiroo/fanfix/test/Test.java
new file mode 100644 (file)
index 0000000..2eaeff0
--- /dev/null
@@ -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());
+       }
+}