1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-08-11 18:54:16 -04:00
profanity/tests/functionaltests/proftest.h

18 lines
415 B
C
Raw Normal View History

2015-05-24 21:18:31 -04:00
#ifndef __H_PROFTEST
#define __H_PROFTEST
2015-06-13 14:41:11 -04:00
#define XDG_CONFIG_HOME "./tests/functionaltests/files/xdg_config_home"
#define XDG_DATA_HOME "./tests/functionaltests/files/xdg_data_home"
2015-05-26 18:22:05 -04:00
2015-05-16 20:11:03 -04:00
void init_prof_test(void **state);
void close_prof_test(void **state);
2015-05-24 21:18:31 -04:00
2015-05-26 20:06:17 -04:00
void prof_start(void);
2015-06-13 14:41:11 -04:00
void prof_connect(void);
2015-05-26 20:06:17 -04:00
void prof_input(char *input);
int prof_output_exact(char *text);
int prof_output_regex(char *text);
2015-05-26 20:06:17 -04:00
2015-05-26 18:22:05 -04:00
#endif