Add account preset object draft.
[modest] / experimental / accountpresets / test-modest-account-presets.c
1 /* unit test for the ModestAccountPresets implementation */
2
3 #include "modest-account-presets.h"
4
5 int
6 main (int argc, char* argv[])
7 {
8         GObject *obj;
9
10         g_type_init ();
11
12         obj = modest_account_presets_new ();
13 /* do something interesting with our brand new object */
14
15         return 0;
16 }