openvpn/tests/unit_tests/example_test/test2.c
David Sommerseth 81d882d530
The Great Reformatting - first phase
This is the first commit of the big reformatting task.  This
is performed by running the ./dev-tools/reformat-all.sh script.

This is based upon the v3 reformat-all.sh/uncrustify.conf version
which is now applied to git master.

Signed-off-by: David Sommerseth <davids@openvpn.net>
2016-12-14 22:33:49 +01:00

23 lines
381 B
C

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <setjmp.h>
#include <cmocka.h>
static void
test_true(void **state) {
(void) state;
}
int
main(void) {
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_true),
};
return cmocka_run_group_tests_name("success_test2", tests, NULL, NULL);
}