diff options
author | James Booth <boothj5@gmail.com> | 2015-10-12 23:44:03 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-10-12 23:44:03 +0100 |
commit | 164620f4bba3de407b254ce35f115f8cded7a721 (patch) | |
tree | 12c8b70953b2b77214311f3a0b5c16b59acef79c | |
parent | 6e28df66e89943e42243d0a36734b7b7b5310c2f (diff) | |
download | profani-tty-164620f4bba3de407b254ce35f115f8cded7a721.tar.gz |
Fixed tests
-rw-r--r-- | tests/unittests/xmpp/stub_xmpp.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/unittests/xmpp/stub_xmpp.c b/tests/unittests/xmpp/stub_xmpp.c index 34c52a63..14a0b01d 100644 --- a/tests/unittests/xmpp/stub_xmpp.c +++ b/tests/unittests/xmpp/stub_xmpp.c @@ -37,6 +37,13 @@ const char * jabber_get_domain(void) return NULL; } +char* jabber_create_uuid(void) +{ + return NULL; +} + +void jabber_free_uuid(char * uuid) {} + jabber_conn_status_t jabber_get_connection_status(void) { return (jabber_conn_status_t)mock(); |