summaryrefslogtreecommitdiff
path: root/tests/gtestutils.c
blob: e755ce419c5b2ee66fe36ea847dcb23bc46d655e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "config.h"
#include <glib.h>
#include <gfbgraph/gfbgraph.h>

#include "gfbgraph-simple-authorizer.h"

int
main (int argc, char **argv)
{
        GFBGraphSimpleAuthorizer *authorizer;

        g_type_init ();
        g_test_init (&argc, &argv, NULL);

        authorizer = gfbgraph_simple_authorizer_new ();

        //g_test_add_data_func ("/GInstapaper/Bookmarks/List", proxy, (GTestDataFunc) ginstapaper_test_bookmarks_list);

        return g_test_run ();
}