X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Ftest%2FIOUtilsTest.java;fp=src%2Fbe%2Fnikiroo%2Futils%2Ftest%2FIOUtilsTest.java;h=0000000000000000000000000000000000000000;hb=fbcc2a2acb39e4c0bbbc805ece1f8ecf2206f951;hp=c62d44d3603624fc7407ab6bf5d6e691a194fd51;hpb=d20c8d77a98fbd80e8afe671568aad3325e90435;p=nikiroo-utils.git diff --git a/src/be/nikiroo/utils/test/IOUtilsTest.java b/src/be/nikiroo/utils/test/IOUtilsTest.java deleted file mode 100644 index c62d44d..0000000 --- a/src/be/nikiroo/utils/test/IOUtilsTest.java +++ /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(); - } - }); - } -}