Move default tmp dirs, fix BLANK handling
[fanfix.git] / src / be / nikiroo / fanfix / test / Test.java
CommitLineData
92fb0719
NR
1package be.nikiroo.fanfix.test;
2
3import be.nikiroo.utils.test.TestLauncher;
4
5/**
6 * Tests for Fanfix.
7 *
8 * @author niki
9 */
10public class Test extends TestLauncher {
11 public Test(String[] args) {
68e370a4
NR
12 super("Fanfix", args);
13 addSeries(new BasicSupportTest(args));
92fb0719
NR
14 }
15
16 /**
17 * Main entry point of the program.
18 *
19 * @param args
20 * the arguments passed to the {@link TestLauncher}s.
21 */
22 static public void main(String[] args) {
23 System.exit(new Test(args).launch());
24 }
25}