Added remaining presence tests

This commit is contained in:
James Booth
2015-05-29 01:10:45 +01:00
parent a522d0225d
commit 4ec7892091
3 changed files with 170 additions and 0 deletions

View File

@@ -55,6 +55,30 @@ int main(int argc, char* argv[]) {
unit_test_setup_teardown(presence_away_with_message,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(presence_online,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(presence_online_with_message,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(presence_xa,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(presence_xa_with_message,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(presence_dnd,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(presence_dnd_with_message,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(presence_chat,
init_prof_test,
close_prof_test),
unit_test_setup_teardown(presence_chat_with_message,
init_prof_test,
close_prof_test),
};
return run_tests(all_tests);