2015-02-06 17:10:11 +01:00
|
|
|
#include <glib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2015-02-06 18:15:29 +01:00
|
|
|
#include <stdbool.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
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2015-02-06 18:15:29 +01:00
|
|
|
/* https://developer.gnome.org/glib/stable/glib-Testing.html */
|
2015-02-06 17:51:56 +01:00
|
|
|
g_test_init(&argc, &argv, NULL);
|
2015-02-06 18:15:29 +01:00
|
|
|
g_test_add("/set0/my first test", /* type fixture*/ dfixture, /*tdata*/NULL, /*fsetup*/ my_setup, my_first_test, my_teardown);
|
|
|
|
return g_test_run();
|
2015-02-06 17:10:11 +01:00
|
|
|
}
|