X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Ftest_code%2FIOUtilsTest.java;fp=src%2Fbe%2Fnikiroo%2Futils%2Ftest_code%2FIOUtilsTest.java;h=0000000000000000000000000000000000000000;hb=46add0670fdee4bd936a13fe2448c5e20a7ffd0a;hp=9f22896f0d6fcd5e09bd4dd8e9302981d7615636;hpb=1b5197ed4ceec2025a9a40c417b37c646b756138;p=nikiroo-utils.git diff --git a/src/be/nikiroo/utils/test_code/IOUtilsTest.java b/src/be/nikiroo/utils/test_code/IOUtilsTest.java deleted file mode 100644 index 9f22896..0000000 --- a/src/be/nikiroo/utils/test_code/IOUtilsTest.java +++ /dev/null @@ -1,24 +0,0 @@ -package be.nikiroo.utils.test_code; - -import java.io.InputStream; - -import be.nikiroo.utils.IOUtils; -import be.nikiroo.utils.test.TestCase; -import be.nikiroo.utils.test.TestLauncher; - -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(); - } - }); - } -}