X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=test%2FNativeLibvlcTest.py;h=2e213fa64cfc0184e912e924a04202065b8ca0d2;hb=bcddfd6382fb71b0021008eb63f1bc4a1b1bae0e;hp=dbcd9ee375ff6939eebf7ba9ea1a3add17eebb56;hpb=4db506d372bd4dbd6a0223eb66a98f9dacb4dc62;p=vlc diff --git a/test/NativeLibvlcTest.py b/test/NativeLibvlcTest.py index dbcd9ee375..2e213fa64c 100644 --- a/test/NativeLibvlcTest.py +++ b/test/NativeLibvlcTest.py @@ -3,15 +3,18 @@ import unittest import native_libvlc_test class NativeLibvlcTestCase( unittest.TestCase ): - def testException( self ): + def testTls( self ): + """[Thread] Set TLS""" + native_libvlc_test.threadvar_test() + def test1Exception( self ): """[LibVLC] Checks libvlc_exception""" # native_libvlc_test.exception_test() - def testStartup( self ): + def test2Startup( self ): """[LibVLC] Checks creation/destroy of libvlc""" # native_libvlc_test.create_destroy() - def testPlaylist( self ): + def test3Playlist( self ): """[LibVLC] Checks basic playlist interaction""" # native_libvlc_test.playlist_test() - def testVLM( self ): + def test4VLM( self ): """[LibVLC] Checks VLM wrapper""" # native_libvlc_test.vlm_test()