Move test code out of "test" package
[fanfix.git] / src / be / nikiroo / utils / test / IOUtilsTest.java
diff --git a/src/be/nikiroo/utils/test/IOUtilsTest.java b/src/be/nikiroo/utils/test/IOUtilsTest.java
deleted file mode 100644 (file)
index c62d44d..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package be.nikiroo.utils.test;
-
-import java.io.InputStream;
-
-import be.nikiroo.utils.IOUtils;
-
-class IOUtilsTest extends TestLauncher {
-       public IOUtilsTest(String[] args) {
-               super("IOUtils test", args);
-
-               addTest(new TestCase("openResource") {
-                       @Override
-                       public void test() throws Exception {
-                               InputStream in = IOUtils.openResource("VERSION");
-                               assertNotNull(
-                                               "The VERSION file is supposed to be present in the binaries",
-                                               in);
-                               in.close();
-                       }
-               });
-       }
-}