about summary refs log tree commit diff stats
path: root/functionaltests/functionaltests.c
diff options
context:
space:
mode:
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);