X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Ftest%2FTest.java;h=5ec24a43b1b6a0eee8ba68991c9b2fe9d86c2c7b;hb=98b95fb81566ca8b04c8d891a02c8019d8bed63d;hp=0dc544b8d71d93ba4a74b9fdd903b81ecfb19d50;hpb=581d42c09b2673025e719a25477565362ebf4482;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/test/Test.java b/src/be/nikiroo/fanfix/test/Test.java deleted file mode 100644 index 0dc544b..0000000 --- a/src/be/nikiroo/fanfix/test/Test.java +++ /dev/null @@ -1,62 +0,0 @@ -package be.nikiroo.fanfix.test; - -import java.io.File; -import java.io.FileOutputStream; -import java.io.IOException; -import java.util.Properties; - -import be.nikiroo.fanfix.Instance; -import be.nikiroo.fanfix.bundles.ConfigBundle; -import be.nikiroo.utils.IOUtils; -import be.nikiroo.utils.resources.Bundles; -import be.nikiroo.utils.test.TestLauncher; - -/** - * Tests for Fanfix. - * - * @author niki - */ -public class Test extends TestLauncher { - public Test(String[] args) { - super("Fanfix", args); - Instance.setTraceHandler(null); - addSeries(new BasicSupportTest(args)); - addSeries(new LibraryTest(args)); - } - - /** - * Main entry point of the program. - * - * @param args - * the arguments passed to the {@link TestLauncher}s. - * @throws IOException - */ - static public void main(String[] args) throws IOException { - File tmpConfig = File.createTempFile("fanfix-config_", ".test"); - File tmpCache = File.createTempFile("fanfix-cache_", ".test"); - tmpConfig.delete(); - tmpConfig.mkdir(); - tmpCache.delete(); - tmpCache.mkdir(); - - FileOutputStream out = new FileOutputStream(new File(tmpConfig, - "config.properties")); - Properties props = new Properties(); - props.setProperty("CACHE_DIR", tmpCache.getAbsolutePath()); - props.store(out, null); - out.close(); - - ConfigBundle config = new ConfigBundle(); - Bundles.setDirectory(tmpConfig.getAbsolutePath()); - config.updateFile(tmpConfig.getPath()); - - System.setProperty("CONFIG_DIR", tmpConfig.getAbsolutePath()); - - int result = new Test(args).launch(); - - IOUtils.deltree(tmpConfig); - IOUtils.deltree(tmpCache); - - System.exit(result); - } -}