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-07-22 17:48:37 -04:00
|
|
|
void prof_connect_with_roster(char *roster);
|
2015-05-26 20:06:17 -04:00
|
|
|
void prof_input(char *input);
|
2015-05-28 20:01:34 -04:00
|
|
|
|
|
|
|
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
|