Commit 2067e26a authored by Filippo Carone's avatar Filippo Carone

libvlc core release test added

parent 5057a7c4
...@@ -45,4 +45,12 @@ public class LibVlcCoreTest ...@@ -45,4 +45,12 @@ public class LibVlcCoreTest
Assert.assertEquals(0, exception.raised); Assert.assertEquals(0, exception.raised);
} }
@Test
public void testRelease() throws Exception
{
libvlc_exception_t exception = new libvlc_exception_t();
LibVlcInstance libvlcInstance = instance.libvlc_new(0, new String[] {}, exception);
instance.libvlc_release(libvlcInstance);
}
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment