mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
17 lines
404 B
C
17 lines
404 B
C
#ifndef MOCK_OTR_H
|
|
#define MOCK_OTR_H
|
|
|
|
#include "config/account.h"
|
|
|
|
void otr_keygen_expect(ProfAccount *account);
|
|
void otr_key_loaded_returns(gboolean loaded);
|
|
|
|
void otr_libotr_version_returns(char *version);
|
|
|
|
void otr_get_my_fingerprint_returns(char *fingerprint);
|
|
void otr_get_their_fingerprint_expect_and_return(char *recipient, char *fingerprint);
|
|
|
|
void otr_start_query_returns(char *query);
|
|
|
|
#endif
|