Added regex output matcher, presence test

This commit is contained in:
James Booth
2015-05-29 01:01:34 +01:00
parent f17afcf5d4
commit a522d0225d
9 changed files with 80 additions and 15 deletions

View File

@@ -13,6 +13,7 @@
#include "test_connect.h"
#include "test_ping.h"
#include "test_rooms.h"
#include "test_presence.h"
int main(int argc, char* argv[]) {
@@ -47,6 +48,13 @@ int main(int argc, char* argv[]) {
unit_test_setup_teardown(rooms_query,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(presence_away,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(presence_away_with_message,
init_prof_test,
close_prof_test),
};
return run_tests(all_tests);