Add example g_add_test
Now it should be easier to start adding tests
This commit is contained in:
parent
222b5c803e
commit
2bc328f237
25
tests/test.c
25
tests/test.c
|
@ -1,11 +1,30 @@
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#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);
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
/* https://developer.gnome.org/glib/stable/glib-Testing.html */
|
||||||
g_test_init(&argc, &argv, NULL);
|
g_test_init(&argc, &argv, NULL);
|
||||||
printf("Write some tests!!! Failing!\n");
|
g_test_add("/set0/my first test", /* type fixture*/ dfixture, /*tdata*/NULL, /*fsetup*/ my_setup, my_first_test, my_teardown);
|
||||||
exit(EXIT_FAILURE);
|
return g_test_run();
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user