X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Ftest_code%2FTest.java;h=8d99cba8d898b38245986687c3f476f4412e4fbf;hb=712ddafb749aada41daab85c36ac12f657b2307e;hp=e00da1173129031bda4acefb261379a325c8bf57;hpb=a26188d393b11040b8ee8476338a73bfadabffb6;p=nikiroo-utils.git diff --git a/src/be/nikiroo/utils/test_code/Test.java b/src/be/nikiroo/utils/test_code/Test.java deleted file mode 100644 index e00da11..0000000 --- a/src/be/nikiroo/utils/test_code/Test.java +++ /dev/null @@ -1,61 +0,0 @@ -package be.nikiroo.utils.test_code; - -import be.nikiroo.utils.Cache; -import be.nikiroo.utils.CacheMemory; -import be.nikiroo.utils.Downloader; -import be.nikiroo.utils.main.bridge; -import be.nikiroo.utils.main.img2aa; -import be.nikiroo.utils.main.justify; -import be.nikiroo.utils.test.TestLauncher; - -/** - * Tests for nikiroo-utils. - * - * @author niki - */ -public class Test extends TestLauncher { - /** - * Start the tests. - * - * @param args - * the arguments (which are passed as-is to the other test - * classes) - */ - public Test(String[] args) { - super("Nikiroo-utils", args); - - addSeries(new ProgressTest(args)); - addSeries(new BundleTest(args)); - addSeries(new IOUtilsTest(args)); - addSeries(new VersionTest(args)); - addSeries(new SerialTest(args)); - addSeries(new SerialServerTest(args)); - addSeries(new StringUtilsTest(args)); - addSeries(new TempFilesTest(args)); - addSeries(new CryptUtilsTest(args)); - addSeries(new BufferedInputStreamTest(args)); - addSeries(new NextableInputStreamTest(args)); - addSeries(new ReplaceInputStreamTest(args)); - addSeries(new BufferedOutputStreamTest(args)); - - // TODO: test cache and downloader - Cache cache = null; - CacheMemory memcache = null; - Downloader downloader = null; - - // To include the sources: - img2aa siu; - justify ssu; - bridge aa; - } - - /** - * Main entry point of the program. - * - * @param args - * the arguments passed to the {@link TestLauncher}s. - */ - static public void main(String[] args) { - System.exit(new Test(args).launch()); - } -}