diff options
author | Adam Domurad <[email protected]> | 2013-06-03 10:34:36 -0400 |
---|---|---|
committer | Adam Domurad <[email protected]> | 2013-06-03 10:34:36 -0400 |
commit | 58464afe42ef3f0558da034bece3a7800f9104ff (patch) | |
tree | 8635f31393ee772b81e977af1549e4d242feccfe /tests/netx/unit/net/sourceforge | |
parent | 1c3034421f64b802cef7b30c44b8524b36255e2f (diff) |
Extract NativeLibraryStorage class from JNLPClassLoader
Diffstat (limited to 'tests/netx/unit/net/sourceforge')
-rw-r--r-- | tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPClassLoaderTest.java | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPClassLoaderTest.java b/tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPClassLoaderTest.java index 03d2f11..6e33464 100644 --- a/tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPClassLoaderTest.java +++ b/tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPClassLoaderTest.java @@ -150,20 +150,6 @@ public class JNLPClassLoaderTest { }); } - - /* Note: Only does file leak testing for now, but more testing could be added. */ - @Test - public void activateNativeFileLeakTest() throws Exception { - final DummyJNLPFileWithJar jnlpFile = new DummyJNLPFileWithJar(createTempJar("test.jar")); - final JNLPClassLoader classLoader = new JNLPClassLoader(jnlpFile, UpdatePolicy.ALWAYS); - - assertNoFileLeak( new Runnable () { - @Override - public void run() { - classLoader.activateNative(jnlpFile.jarDesc); - } - }); - } @Test public void getMainClassNameTest() throws Exception { |