Added cmd_otr tests

This commit is contained in:
James Booth
2014-12-24 23:32:32 +00:00
parent aa4ffa7e8c
commit 419f37feea
7 changed files with 225 additions and 100 deletions

View File

@@ -58,7 +58,12 @@ GList * jabber_get_available_resources(void)
}
// message functions
void message_send_chat(const char * const barejid, const char * const msg) {}
void message_send_chat(const char * const barejid, const char * const msg)
{
check_expected(barejid);
check_expected(msg);
}
void message_send_private(const char * const fulljid, const char * const msg) {}
void message_send_groupchat(const char * const roomjid, const char * const msg) {}
void message_send_groupchat_subject(const char * const roomjid, const char * const subject) {}