summaryrefslogtreecommitdiff
path: root/tests/check_suites.h
blob: e662084276302a1ce779c8b5f6f537d46a52f970 (plain)
1
2
3
4
5
6
7
8
#include <check.h>

#if CHECK_MAJOR_VERSION == 0 && CHECK_MINOR_VERSION < 13
void suite_add_test(Suite *s, TFun tf, const char *name);
#else
void suite_add_test(Suite *s, const TTest *tt, const char *name);
#endif
Suite *public_suite(void);