Add tests (WIP)
[gofetch.git] / src / be / nikiroo / gofetch / test / Test.java
diff --git a/src/be/nikiroo/gofetch/test/Test.java b/src/be/nikiroo/gofetch/test/Test.java
new file mode 100644 (file)
index 0000000..7ece14a
--- /dev/null
@@ -0,0 +1,19 @@
+package be.nikiroo.gofetch.test;
+
+import be.nikiroo.utils.test.TestLauncher;
+
+/**
+ * Tests for GoFetch.
+ * 
+ * @author niki
+ */
+public class Test extends TestLauncher {
+       public Test(String[] args) {
+               super("GoFetch", args);
+               addSeries(new TestLWN(args));
+       }
+
+       public static void main(String[] args) {
+               System.exit(new Test(args).launch());
+       }
+}