about summary refs log tree commit diff stats
path: root/tests/functionaltests/functionaltests.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functionaltests/functionaltests.c')
-rw-r--r--tests/functionaltests/functionaltests.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/functionaltests/functionaltests.c b/tests/functionaltests/functionaltests.c
index ecdfaa01..8650ea3a 100644
--- a/tests/functionaltests/functionaltests.c
+++ b/tests/functionaltests/functionaltests.c
@@ -17,6 +17,7 @@
 #include "test_message.h"
 #include "test_carbons.h"
 #include "test_chat_session.h"
+#include "test_receipts.h"
 
 #define PROF_FUNC_TEST(test) unit_test_setup_teardown(test, init_prof_test, close_prof_test)
 
@@ -63,7 +64,9 @@ int main(int argc, char* argv[]) {
         PROF_FUNC_TEST(connect_with_carbons_enabled),
         PROF_FUNC_TEST(send_disable_carbons),
         PROF_FUNC_TEST(receive_carbon),
-        PROF_FUNC_TEST(receive_self_carbon)
+        PROF_FUNC_TEST(receive_self_carbon),
+
+        PROF_FUNC_TEST(send_receipt_request),
     };
 
     return run_tests(all_tests);