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(); } }); } }