X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;ds=inline;f=src%2Fbe%2Fnikiroo%2Fgofetch%2Ftest%2FTest.java;fp=src%2Fbe%2Fnikiroo%2Fgofetch%2Ftest%2FTest.java;h=7ece14a2bc52463e5cb24b6e153f4ef5fd7fb827;hb=a71d4075a8591b0655277b1a0e606ee48d228869;hp=0000000000000000000000000000000000000000;hpb=1ab7ff0acbc00ddcf6b27a3bebd1e351fdbe96a2;p=gofetch.git diff --git a/src/be/nikiroo/gofetch/test/Test.java b/src/be/nikiroo/gofetch/test/Test.java new file mode 100644 index 0000000..7ece14a --- /dev/null +++ b/src/be/nikiroo/gofetch/test/Test.java @@ -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()); + } +}