1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/tests/functionaltests/proftest.h

22 lines
548 B
C
Raw Normal View History

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