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.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/functionaltests/functionaltests.c b/functionaltests/functionaltests.c
index 27fa91c9..fa162a26 100644
--- a/functionaltests/functionaltests.c
+++ b/functionaltests/functionaltests.c
@@ -14,6 +14,7 @@
 #include "test_ping.h"
 #include "test_rooms.h"
 #include "test_presence.h"
+#include "test_message.h"
 
 int main(int argc, char* argv[]) {
 
@@ -88,6 +89,13 @@ int main(int argc, char* argv[]) {
         unit_test_setup_teardown(presence_received,
             init_prof_test,
             close_prof_test),
+
+        unit_test_setup_teardown(message_send,
+            init_prof_test,
+            close_prof_test),
+        unit_test_setup_teardown(message_receive,
+            init_prof_test,
+            close_prof_test),
     };
 
     return run_tests(all_tests);