]> git.sesse.net Git - vlc/blobdiff - test/NativeLibvlcTest.py
A bit of cleanup and test
[vlc] / test / NativeLibvlcTest.py
index dbcd9ee375ff6939eebf7ba9ea1a3add17eebb56..acb74c6510d247304f5ff51d7e661885adb9b440 100644 (file)
@@ -3,15 +3,15 @@ import unittest
 import native_libvlc_test
 
 class NativeLibvlcTestCase( unittest.TestCase ):
-    def testException( self ):
+    def test1Exception( self ):
         """[LibVLC] Checks libvlc_exception"""
-#      native_libvlc_test.exception_test()
-    def testStartup( self ):
+       native_libvlc_test.exception_test()
+    def test2Startup( self ):
         """[LibVLC] Checks creation/destroy of libvlc"""
-#      native_libvlc_test.create_destroy()
-    def testPlaylist( self ):
+       native_libvlc_test.create_destroy()
+    def test3Playlist( self ):
         """[LibVLC] Checks basic playlist interaction"""
-#      native_libvlc_test.playlist_test()
-    def testVLM( self ):
+       native_libvlc_test.playlist_test()
+    def test4VLM( self ):
         """[LibVLC] Checks VLM wrapper"""
-#      native_libvlc_test.vlm_test()
+       native_libvlc_test.vlm_test()