2008-05-14 19:10:54 +00:00
|
|
|
#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);
|
2009-02-11 17:08:41 +00:00
|
|
|
void check_simple_cases(Suite *suite);
|
2008-05-14 19:10:54 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|