about summary refs log tree commit diff stats
path: root/stabbertests/testsuite.c
diff options
context:
space:
mode:
Diffstat (limited to 'stabbertests/testsuite.c')
-rw-r--r--stabbertests/testsuite.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/stabbertests/testsuite.c b/stabbertests/testsuite.c
new file mode 100644
index 00000000..e4a220d7
--- /dev/null
+++ b/stabbertests/testsuite.c
@@ -0,0 +1,24 @@
+#include <stdarg.h>
+#include <stdio.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <stddef.h>
+#include <setjmp.h>
+#include <cmocka.h>
+#include <sys/stat.h>
+
+#include "config.h"
+
+#include "proftest.h"
+#include "test_connect.h"
+
+int main(int argc, char* argv[]) {
+
+    const UnitTest all_tests[] = {
+        unit_test_setup_teardown(connect_with_no_jid,
+            init_prof_test,
+            close_prof_test),
+    };
+
+    return run_tests(all_tests);
+}