2015-02-06 17:10:11 +01:00
|
|
|
#include <glib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2015-02-06 17:51:56 +01:00
|
|
|
g_test_init(&argc, &argv, NULL);
|
2015-02-06 17:10:11 +01:00
|
|
|
printf("Write some tests!!! Failing!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
return 0;
|
|
|
|
}
|