ce16e3e69f97b889c22dfa45b019e81d10ba5b0e
[gofetch.git] / src / be / nikiroo / gofetch / test / Test.java
1 package be.nikiroo.gofetch.test;
2
3 import be.nikiroo.utils.test.TestLauncher;
4
5 /**
6 * Tests for GoFetch.
7 *
8 * @author niki
9 */
10 public class Test extends TestLauncher {
11 public Test(String[] args) {
12 super("GoFetch", args);
13 addTest(new TestLWN(args));
14 addTest(new TestSlashdot(args));
15 addTest(new TestTooLinux(args));
16 }
17
18 public static void main(String[] args) {
19 System.exit(new Test(args).launch());
20 }
21 }