1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -05:00
profanity/stabbertests/testsuite.c

25 lines
454 B
C
Raw Normal View History

2015-05-17 01:11:03 +01:00
#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[] = {
2015-05-17 22:05:43 +01:00
unit_test_setup_teardown(connect_with_jid,
2015-05-17 01:11:03 +01:00
init_prof_test,
close_prof_test),
};
return run_tests(all_tests);
}