8 /* define the test suites here */
9 /* remember to add the suite to the runner in check_libpurple.c */
10 Suite
* master_suite(void);
11 Suite
* cipher_suite(void);
12 Suite
* jabber_jutil_suite(void);
13 Suite
* util_suite(void);
16 #define assert_string_equal(expected, actual) { \
17 const gchar *a = actual; \
18 fail_unless(strcmp(expected, a) == 0, "Expecting '%s' but got '%s'", expected, a); \
21 #define assert_string_equal_free(expected, actual) { \
23 assert_string_equal(expected, b); \
28 #endif /* ifndef TESTS_H */