X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Ftest_code%2FTest.java;fp=src%2Fbe%2Fnikiroo%2Futils%2Ftest_code%2FTest.java;h=0000000000000000000000000000000000000000;hb=46add0670fdee4bd936a13fe2448c5e20a7ffd0a;hp=8d99cba8d898b38245986687c3f476f4412e4fbf;hpb=1b5197ed4ceec2025a9a40c417b37c646b756138;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 8d99cba..0000000 --- a/src/be/nikiroo/utils/test_code/Test.java +++ /dev/null @@ -1,68 +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.Proxy; -import be.nikiroo.utils.main.bridge; -import be.nikiroo.utils.main.img2aa; -import be.nikiroo.utils.main.justify; -import be.nikiroo.utils.test.TestLauncher; -import be.nikiroo.utils.ui.UIUtils; - -/** - * 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); - - // setDetails(true); - - 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)); - addSeries(new ReplaceOutputStreamTest(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; - Proxy proxy; - UIUtils uiUtils; - } - - /** - * 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()); - } -}