]> git.sesse.net Git - vlc/blobdiff - bindings/java/core/src/test/java/org/videolan/jvlc/JVLCTest.java
initial release method added to the JVLC class
[vlc] / bindings / java / core / src / test / java / org / videolan / jvlc / JVLCTest.java
index 64810c341b6e4da687299dd3e1ce3176fa909ce2..17ec6611313cd61360c7d8f60a139142a1a7a94c 100644 (file)
@@ -50,6 +50,13 @@ public class JVLCTest
         Assert.assertNotNull(instance);
     }
     
+    @Test
+    public void jvlcRelease()
+    {
+        JVLC jvlc = new JVLC();
+        jvlc.release();
+        jvlc.release();
+    }
     
 
 }