New: reddit linux_gaming
[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 addTest(new TestSeptSurSept(args));
17 addTest(new TestReddit(args));
18 }
19
20 public static void main(String[] args) {
21 System.exit(new Test(args).launch());
22 }
23 }