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