You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
574 B

import unittest
import native_libvlc_test
class NativeAlgoTestCase( unittest.TestCase ):
def test_arrays( self ):
"""[Algo] Check dynamic arrays"""
native_libvlc_test.arrays_test()
def test_bsearch_direct( self ):
"""[Algo] Check Bsearch with simple types"""
native_libvlc_test.bsearch_direct_test()
def test_bsearch_struct( self ):
"""[Algo] Check Bsearch with structs"""
native_libvlc_test.bsearch_member_test()
def test_dict( self ):
"""[Algo] Check dictionnaries"""
native_libvlc_test.dict_test()