From e8a2fed920088141d8ed47c6803bc166b18c5418 Mon Sep 17 00:00:00 2001 From: bertrand Date: Sat, 22 Jan 2000 01:35:11 +0000 Subject: add exception handling everywhere in the store related functions 2000-01-21 bertrand * camel/camel-store.c: add exception handling everywhere in the store related functions arguments. * camel/providers/mbox/camel-mbox-folder.c: idem * camel/providers/mbox/camel-mbox-folder.h: idem * camel/providers/mbox/camel-mbox-store.h: idem * camel/providers/mbox/Makefile.am (libcamelmbox_la_SOURCES): added camel-mbox-provider.c to the mbox provider sources. svn path=/trunk/; revision=1605 --- tests/test10.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 tests/test10.c (limited to 'tests/test10.c') diff --git a/tests/test10.c b/tests/test10.c new file mode 100644 index 0000000000..3db63bfd3e --- /dev/null +++ b/tests/test10.c @@ -0,0 +1,50 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ + + +#include "camel.h" +#include "camel-mbox-folder.h" +#include "camel-mbox-parser.h" +#include "camel-mbox-utils.h" +#include "camel-mbox-summary.h" +#include "camel-log.h" +#include "camel-exception.h" +#include "md5-utils.h" +#include +#include +#include +#include +#include +#include +#include + +int +main (int argc, char**argv) +{ + CamelSession *session; + CamelException *ex; + CamelStore *store; + gchar *store_url = "mbox:///tmp/evmail"; + CamelFolder *folder; + + + camel_debug_level = 10; + + gtk_init (&argc, &argv); + camel_init (); + ex = camel_exception_new (); + camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so"); + + session = camel_session_new (); + store = camel_session_get_store (session, store_url); + + + folder = camel_store_get_folder (store, "Inbox"); + + camel_folder_open (folder, FOLDER_OPEN_RW, ex); + + + return 1; +} + + + -- cgit