]> git.sesse.net Git - vlc/blob - test/native/init.c
Some initial work for streaming profiles
[vlc] / test / native / init.c
1 #include "tests.h"
2
3 static PyMethodDef native_libvlc_test_methods[] = {
4    DEF_METHOD( create_destroy, "Create and destroy" )
5    DEF_METHOD( exception_test, "Test Exception handling" )
6    DEF_METHOD( playlist_test, "Test Playlist interaction" )
7    DEF_METHOD( vlm_test, "Test VLM" )
8    DEF_METHOD( timers_test, "Test timers" )
9    DEF_METHOD( i18n_atof_test, "Test i18n_atof" )
10    DEF_METHOD( url_decode_test, "URL decoding" )
11    DEF_METHOD( chains_test, "Test building of chains" )
12    DEF_METHOD( gui_chains_test, "Test interactions between chains and GUI" )
13    DEF_METHOD( psz_chains_test, "Test building of chain strings" )
14    { NULL, NULL, 0, NULL }
15 };
16
17 DECLARE_MODULE( native_libvlc_test )