2014-02-16 14:14:15 -05:00
|
|
|
#ifndef MOCK_OTR_H
|
|
|
|
#define MOCK_OTR_H
|
|
|
|
|
|
|
|
#include "config/account.h"
|
|
|
|
|
|
|
|
void otr_keygen_expect(ProfAccount *account);
|
2014-02-23 15:34:27 -05:00
|
|
|
void otr_key_loaded_returns(gboolean loaded);
|
2014-02-16 14:14:15 -05:00
|
|
|
|
|
|
|
void otr_libotr_version_returns(char *version);
|
|
|
|
|
2014-02-17 16:52:42 -05:00
|
|
|
void otr_get_my_fingerprint_returns(char *fingerprint);
|
2014-02-17 18:10:00 -05:00
|
|
|
void otr_get_their_fingerprint_expect_and_return(char *recipient, char *fingerprint);
|
2014-02-17 16:52:42 -05:00
|
|
|
|
2014-02-23 16:20:41 -05:00
|
|
|
void otr_start_query_returns(char *query);
|
|
|
|
|
2014-02-16 14:14:15 -05:00
|
|
|
#endif
|