]> git.sesse.net Git - vlc/blobdiff - test/NativeLibvlcTest.py
more info about developers/contributors
[vlc] / test / NativeLibvlcTest.py
index 2c7c0aa38622b795b694749ff7bb61f46156662f..2e213fa64cfc0184e912e924a04202065b8ca0d2 100644 (file)
@@ -1,15 +1,20 @@
-import vlc
 import unittest
 
 import native_libvlc_test
 
 class NativeLibvlcTestCase( unittest.TestCase ):
-    def testException( self ):
-        """Checks libvlc_exception"""
-       native_libvlc_test.exception_test()
-    def testStartup( self ):
-        """Checks creation/destroy of libvlc"""
-       native_libvlc_test.create_destroy()
-    def testPlaylist( self ):
-        """Checks basic playlist interaction"""
-       native_libvlc_test.playlist_test()
+    def testTls( self ):
+        """[Thread] Set TLS"""
+        native_libvlc_test.threadvar_test()
+    def test1Exception( self ):
+        """[LibVLC] Checks libvlc_exception"""
+#      native_libvlc_test.exception_test()
+    def test2Startup( self ):
+        """[LibVLC] Checks creation/destroy of libvlc"""
+#      native_libvlc_test.create_destroy()
+    def test3Playlist( self ):
+        """[LibVLC] Checks basic playlist interaction"""
+#      native_libvlc_test.playlist_test()
+    def test4VLM( self ):
+        """[LibVLC] Checks VLM wrapper"""
+#      native_libvlc_test.vlm_test()