Add assertion about non-special resource

This commit is contained in:
Dave Syer 2014-04-22 09:25:45 +01:00
parent 80652007b5
commit 34604a9602

View File

@ -90,6 +90,7 @@ public class JarFileTests {
URL jarUrl = new URL("jar:" + this.rootJarFile.toURI() + "!/");
URLClassLoader urlClassLoader = new URLClassLoader(new URL[] { jarUrl });
assertThat(urlClassLoader.getResource("special/\u00EB.dat"), notNullValue());
assertThat(urlClassLoader.getResource("d/9.dat"), notNullValue());
}
@Test