test-autotools-shared/tests/test.c

50 lines
1.6 KiB
C
Raw Normal View History

2015-02-06 17:10:11 +01:00
#include <glib.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
2015-02-09 22:21:18 +01:00
#include "common.h"
typedef struct {
int a; /* usually some other data structure that you
* need for your tests */
} dfixture;
void my_setup(dfixture *df, gconstpointer test_data) {
/* here goes the code to setup fixture */
}
void my_teardown(dfixture *df, gconstpointer test_data) {
/* here goes the code to free/cleanup fixture */
}
void my_first_test(dfixture *df, gconstpointer ignored) {
/* g_assert(false); */
g_assert(true);
}
2015-02-06 17:10:11 +01:00
void my_second_test(dfixture *df, gconstpointer ignored) {
g_test_fail();
}
void my_third_test(dfixture *df, gconstpointer ignored) {
2015-02-09 22:21:18 +01:00
myfunc();
g_test_incomplete("incomplete means that there is some functionality missing");
}
void my_fourth_test(dfixture *df, gconstpointer ignored) {
g_test_skip("skipped because doesn't apply to GNU/Linux systems");
}
2015-02-06 17:10:11 +01:00
int main(int argc, char *argv[])
{
/* https://developer.gnome.org/glib/stable/glib-Testing.html */
g_test_init(&argc, &argv, NULL);
g_test_add("/set0/my first test", /* type fixture*/ dfixture, /*tdata*/NULL, /*fsetup*/ my_setup, my_first_test, my_teardown);
g_test_add("/set0/my second test", /* type fixture*/ dfixture, /*tdata*/NULL, /*fsetup*/ my_setup, my_second_test, my_teardown);
g_test_add("/set0/my third test", /* type fixture*/ dfixture, /*tdata*/NULL, /*fsetup*/ my_setup, my_third_test, my_teardown);
g_test_add("/set0/my fourth test", /* type fixture*/ dfixture, /*tdata*/NULL, /*fsetup*/ my_setup, my_fourth_test, my_teardown);
2015-02-07 21:02:22 +01:00
g_test_run();
return 0;
2015-02-06 17:10:11 +01:00
}