]> git.sesse.net Git - vlc/blob - test/native/init.c
Add I18N and URL tests in test/
[vlc] / test / native / init.c
1
2 // TODO: Ugly, split correctly 
3 #include "libvlc.c"
4 #include "stats.c"
5 #include "i18n.c"
6 #include "url.c"
7
8 static PyMethodDef native_libvlc_test_methods[] = {
9    DEF_METHOD( create_destroy, "Create and destroy" )
10    DEF_METHOD( exception_test, "Test Exception handling" )
11    DEF_METHOD( playlist_test, "Test Playlist interaction" )
12    DEF_METHOD( vlm_test, "Test VLM" )
13    DEF_METHOD( timers_test, "Test timers" )
14    DEF_METHOD( i18n_atof_test, "Test i18n_atof" )
15    DEF_METHOD( url_decode_test, "URL decoding" )
16    { NULL, NULL, 0, NULL }
17 };
18
19 DECLARE_MODULE( native_libvlc_test )