From: Sebastian B. <sb...@us...> - 2013-12-24 09:32:12
|
Update of /cvsroot/simplemail/simplemail/tests In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1302/tests Modified Files: imap2_unittest.c Log Message: More stubs added. Index: imap2_unittest.c =================================================================== RCS file: /cvsroot/simplemail/simplemail/tests/imap2_unittest.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- imap2_unittest.c 24 Dec 2013 09:30:16 -0000 1.19 +++ imap2_unittest.c 24 Dec 2013 09:32:10 -0000 1.20 @@ -99,6 +99,14 @@ { } +void main_freeze_mail_list(void) +{ +} + +void main_thaw_mail_list(void) +{ +} + void read_refresh_prevnext_button(struct folder *f) { } @@ -142,7 +150,13 @@ break; case QUIT: - thread_abort(thread_get_main()); + { + struct folder *f; + f = folder_find_by_imap("test","localhost","INBOX"); + CU_ASSERT(f != NULL); + folder_save_index(f); + thread_abort(thread_get_main()); + } break; } return NULL; |