mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-05 02:34:18 +00:00
dd9f6af78d
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8406 d0543943-73ff-0310-b7d9-9358b9ac24b2
16 lines
298 B
C
16 lines
298 B
C
#ifndef CHECK_NUA_H
|
|
|
|
#include <check.h>
|
|
|
|
#undef tcase_add_test
|
|
#define tcase_add_test(tc, tf) \
|
|
check_nua_tcase_add_test(tc, tf, "" #tf "")
|
|
|
|
void check_nua_tcase_add_test(TCase *, TFun, char const *name);
|
|
|
|
void check_session_cases(Suite *suite);
|
|
void check_register_cases(Suite *suite);
|
|
|
|
#endif
|
|
|