1 package be
.nikiroo
.utils
.test_code
;
3 import java
.io
.InputStream
;
5 import be
.nikiroo
.utils
.IOUtils
;
6 import be
.nikiroo
.utils
.test
.TestCase
;
7 import be
.nikiroo
.utils
.test
.TestLauncher
;
9 class IOUtilsTest
extends TestLauncher
{
10 public IOUtilsTest(String
[] args
) {
11 super("IOUtils test", args
);
13 addTest(new TestCase("openResource") {
15 public void test() throws Exception
{
16 InputStream in
= IOUtils
.openResource("VERSION");
18 "The VERSION file is supposed to be present in the binaries",