1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-07-07 18:04:15 -04:00
profanity/tests/testsuite.c

14 lines
265 B
C
Raw Normal View History

2012-03-01 20:51:40 -05:00
#include <head-unit.h>
#include "testsuite.h"
int main(void)
{
2012-04-29 20:09:42 -04:00
register_prof_history_tests();
2012-03-07 19:46:24 -05:00
register_contact_list_tests();
2012-08-22 20:08:06 -04:00
register_common_tests();
2012-05-17 20:33:40 -04:00
register_prof_autocomplete_tests();
2012-11-17 19:07:00 -05:00
register_parser_tests();
2012-03-01 20:51:40 -05:00
run_suite();
return 0;
}