Changeset 554
- Timestamp:
- 07/04/06 21:10:14
- Files:
-
- trunk/libtinymail-test/Makefile.am (modified) (3 diffs)
- trunk/libtinymail-test/tny-account-iface-test.c (added)
- trunk/libtinymail-test/tny-account-iface-test.h (added)
- trunk/libtinymail-test/tny-device-iface-test.c (added)
- trunk/libtinymail-test/tny-device-iface-test.h (added)
- trunk/libtinymail-test/tny-iterator-iface-test.c (added)
- trunk/libtinymail-test/tny-iterator-iface-test.h (added)
- trunk/libtinymail-test/tny-msg-folder-iface-test.c (added)
- trunk/libtinymail-test/tny-msg-folder-iface-test.h (added)
- trunk/libtinymail-test/tny-msg-iface-test.c (added)
- trunk/libtinymail-test/tny-msg-iface-test.h (added)
- trunk/libtinymail-test/tny-test-anything.c (modified) (1 diff)
- trunk/libtinymail-test/tny-test-suite.c (modified) (2 diffs)
- trunk/libtinymail/tny-account-iface.h (modified) (1 diff)
- trunk/libtinymail/tny-device-iface.h (modified) (1 diff)
- trunk/libtinymail/tny-iterator-iface.h (modified) (1 diff)
- trunk/libtinymail/tny-list-iface.h (modified) (1 diff)
- trunk/libtinymail/tny-msg-folder-iface.h (modified) (1 diff)
- trunk/libtinymail/tny-msg-iface.h (modified) (1 diff)
- trunk/libtinymail/tny-store-account-iface.h (modified) (1 diff)
- trunk/libtinymail/tny-transport-account-iface.h (modified) (1 diff)
- trunk/tinymail/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail-test/Makefile.am
r553 r554 4 4 -I$(top_srcdir)/libtinymailui \ 5 5 -I$(top_srcdir)/libtinymailui-gtk \ 6 -I$(top_srcdir)/libtinymail-camel 6 -I$(top_srcdir)/libtinymail-camel \ 7 -I$(top_srcdir)/$(PLATFORMDIR) 7 8 8 9 lib_LTLIBRARIES = libtinymail-test-suite.la … … 22 23 tny-msg-mime-part-iface-test.c \ 23 24 tny-msg-mime-part-iface-test.h \ 25 tny-account-iface-test.c \ 26 tny-account-iface-test.h \ 27 tny-device-iface-test.c \ 28 tny-device-iface-test.h \ 29 tny-iterator-iface-test.c \ 30 tny-iterator-iface-test.h \ 31 tny-msg-folder-iface-test.c \ 32 tny-msg-folder-iface-test.h \ 33 tny-msg-iface-test.c \ 34 tny-msg-iface-test.h \ 24 35 tny-test-suite.h 25 36 … … 35 46 $(top_builddir)/libtinymailui/libtinymailui-$(API_VERSION).la \ 36 47 $(top_builddir)/libtinymailui-gtk/libtinymailui-gtk-$(API_VERSION).la \ 37 $(top_builddir)/libtinymail-camel/libtinymail-camel-$(API_VERSION).la 48 $(top_builddir)/libtinymail-camel/libtinymail-camel-$(API_VERSION).la \ 49 $(top_builddir)/$(PLATFORMDIR)/$(PLATFORMDIR)-$(API_VERSION).la 38 50 39 51 tny_simple_test_runner_LDFLAGS = $(LIBTINYMAIL_TEST_LIBS) trunk/libtinymail-test/tny-test-anything.c
r209 r554 81 81 82 82 static gchar* 83 get_pass_func (TnyAccountIface *account, const gchar *prompt )83 get_pass_func (TnyAccountIface *account, const gchar *prompt, gboolean *cancel) 84 84 { 85 85 g_print ("asks pass\n"); trunk/libtinymail-test/tny-test-suite.c
r553 r554 29 29 #include "tny-msg-mime-part-iface-test.h" 30 30 #include "tny-list-iface-test.h" 31 #include "tny-account-iface-test.h" 32 #include "tny-device-iface-test.h" 33 #include "tny-iterator-iface-test.h" 34 #include "tny-msg-folder-iface-test.h" 35 #include "tny-msg-iface-test.h" 31 36 32 37 GList* … … 39 44 suites = g_list_append (suites, create_tny_msg_mime_part_iface_suite ()); 40 45 suites = g_list_append (suites, create_tny_list_iface_suite ()); 46 suites = g_list_append (suites, create_tny_account_iface_suite ()); 47 suites = g_list_append (suites, create_tny_device_iface_suite ()); 48 suites = g_list_append (suites, create_tny_iterator_iface_suite ()); 49 suites = g_list_append (suites, create_tny_msg_folder_iface_suite ()); 50 suites = g_list_append (suites, create_tny_msg_iface_suite ()); 41 51 42 52 return suites; trunk/libtinymail/tny-account-iface.h
r550 r554 1 1 #ifndef TNY_ACCOUNT_IFACE_H 2 2 #define TNY_ACCOUNT_IFACE_H 3 4 /* Urgent TODO: add a unit test for this type */5 3 6 4 /* libtinymail - The Tiny Mail base library trunk/libtinymail/tny-device-iface.h
r546 r554 1 1 #ifndef TNY_DEVICE_IFACE_H 2 2 #define TNY_DEVICE_IFACE_H 3 4 /* Urgent TODO: add a unit test for this type */5 3 6 4 /* libtinymail - The Tiny Mail base library trunk/libtinymail/tny-iterator-iface.h
r550 r554 1 1 #ifndef TNY_ITERATOR_IFACE_H 2 2 #define TNY_ITERATOR_IFACE_H 3 4 /* Urgent TODO: add a unit test for this type */5 3 6 4 /* libtinymail - The Tiny Mail base library trunk/libtinymail/tny-list-iface.h
r546 r554 1 1 #ifndef TNY_LIST_IFACE_H 2 2 #define TNY_LIST_IFACE_H 3 4 /* Urgent TODO: add a unit test for this type */5 3 6 4 /* libtinymail - The Tiny Mail base library trunk/libtinymail/tny-msg-folder-iface.h
r548 r554 1 1 #ifndef TNY_MSG_FOLDER_IFACE_H 2 2 #define TNY_MSG_FOLDER_IFACE_H 3 4 /* Urgent TODO: add a unit test for this type */5 3 6 4 /* libtinymail - The Tiny Mail base library trunk/libtinymail/tny-msg-iface.h
r552 r554 1 1 #ifndef TNY_MSG_IFACE_H 2 2 #define TNY_MSG_IFACE_H 3 4 /* Urgent TODO: add a unit test for this type */5 3 6 4 /* libtinymail - The Tiny Mail base library trunk/libtinymail/tny-store-account-iface.h
r546 r554 1 1 #ifndef TNY_STORE_ACCOUNT_IFACE_H 2 2 #define TNY_STORE_ACCOUNT_IFACE_H 3 4 /* Urgent TODO: add a unit test for this type */5 3 6 4 /* libtinymail - The Tiny Mail base library trunk/libtinymail/tny-transport-account-iface.h
r546 r554 1 1 #ifndef TNY_TRANSPORT_ACCOUNT_IFACE_H 2 2 #define TNY_TRANSPORT_ACCOUNT_IFACE_H 3 4 /* Urgent TODO: add a unit test for this type */5 3 6 4 /* libtinymail - The Tiny Mail base library trunk/tinymail/Makefile.am
r527 r554 31 31 $(top_builddir)/libtinymail-camel/libtinymail-camel-$(API_VERSION).la \ 32 32 $(top_builddir)/$(PLATFORMDIR)/$(PLATFORMDIR)-$(API_VERSION).la 33
