X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=tests%2Fcheck_folder-transfer.c;h=470967683fa3e0ac349df67286c543903c7b8df5;hp=80822bbb21b5abbe6dd8664734e5cf0ac93f8c36;hb=b8c44ea979806119e8925fc0c86e4e5cfafc3528;hpb=62c4b64a4ddad892e3baa830f065999ec39d0bc1 diff --git a/tests/check_folder-transfer.c b/tests/check_folder-transfer.c index 80822bb..4709676 100644 --- a/tests/check_folder-transfer.c +++ b/tests/check_folder-transfer.c @@ -38,7 +38,8 @@ #include #include #include - +#include +#include #include #include @@ -106,15 +107,15 @@ main (int argc, char **argv) TnyStoreAccount *account; TnyIterator *iter; TnyFolder *folder_src = NULL, *folder_dst = NULL; - TnyPlatformFactory *fact = NULL; ModestAccountMgr *acc_mgr = NULL; ModestMailOperation *mail_op = NULL; - TnyAccountStore *account_store = NULL; + ModestTnyAccountStore *account_store = NULL; guint src_num_headers = 0, dst_num_headers = 0; GError *err; g_type_init (); - + g_thread_init (NULL); + context = g_option_context_new ("Test"); g_option_context_add_main_entries (context, options, "Modest"); if (!g_option_context_parse (context, &argc, &argv, &err)) { @@ -124,9 +125,8 @@ main (int argc, char **argv) } g_option_context_free (context); - fact = TNY_PLATFORM_FACTORY (modest_tny_platform_factory_get_instance ()); - acc_mgr = MODEST_ACCOUNT_MGR (modest_tny_platform_factory_get_modest_account_mgr_instance (fact)); - account_store = tny_platform_factory_new_account_store (fact); + acc_mgr = modest_runtime_get_account_mgr (); + account_store = modest_runtime_get_account_store(); if (cachedir) g_print ("Using %s as cache directory\n", cachedir); @@ -139,8 +139,9 @@ main (int argc, char **argv) /* Get accounts */ accounts = tny_simple_list_new (); - tny_account_store_get_accounts (account_store, accounts, - TNY_ACCOUNT_STORE_STORE_ACCOUNTS); + tny_account_store_get_accounts (TNY_ACCOUNT_STORE(account_store), + accounts, + TNY_ACCOUNT_STORE_STORE_ACCOUNTS); iter = tny_list_create_iterator (accounts); account = (TnyStoreAccount*) tny_iterator_get_current (iter);