1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -05:00

22 lines
524 B
C
Raw Normal View History

2015-05-25 02:18:31 +01:00
#ifndef __H_PROFTEST
#define __H_PROFTEST
2015-06-13 19:41:11 +01:00
#define XDG_CONFIG_HOME "./tests/functionaltests/files/xdg_config_home"
#define XDG_DATA_HOME "./tests/functionaltests/files/xdg_data_home"
2015-05-26 23:22:05 +01:00
2015-05-17 01:11:03 +01:00
void init_prof_test(void **state);
void close_prof_test(void **state);
2015-05-25 02:18:31 +01:00
2015-05-27 01:06:17 +01:00
void prof_start(void);
2015-06-13 19:41:11 +01:00
void prof_connect(void);
void prof_connect_with_roster(char *roster);
2015-05-27 01:06:17 +01:00
void prof_input(char *input);
int prof_output_exact(char *text);
int prof_output_regex(char *text);
2015-05-27 01:06:17 +01:00
void prof_timeout(int timeout);
void prof_timeout_reset(void);
2015-05-26 23:22:05 +01:00
#endif