about summary refs log tree commit diff stats
path: root/functionaltests/functionaltests.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-05-29 01:10:45 +0100
committerJames Booth <boothj5@gmail.com>2015-05-29 01:10:45 +0100
commit4ec78920919398bd2964c2eae680e1374714f419 (patch)
treeab6f3663134e74616cfefeecbceeddbc2e7400f1 /functionaltests/functionaltests.c
parenta522d0225d7de9124ebbd18188ef9758c60cc8f5 (diff)
downloadprofani-tty-4ec78920919398bd2964c2eae680e1374714f419.tar.gz
Added remaining presence tests
Diffstat (limited to 'functionaltests/functionaltests.c')
-rw-r--r--functionaltests/functionaltests.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/functionaltests/functionaltests.c b/functionaltests/functionaltests.c
index 668445cd..1b84a73f 100644
--- a/functionaltests/functionaltests.c
+++ b/functionaltests/functionaltests.c
@@ -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);