Merge "Fixed deletion of last character with no place-holder text" into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / common / testcase.h
1 #ifndef _TESTCASE_H_
2 #define _TESTCASE_H_
3
4 /* pointer to startup/cleanup functions */
5 typedef void (*void_fun_ptr)(void);
6
7 /* pointer to testcase functions */
8 typedef int (*tc_fun_ptr)(void);
9
10 /* struct describing specific testcase */
11 typedef struct testcase_s {
12     const char* name;
13     tc_fun_ptr function;
14     void_fun_ptr startup;
15     void_fun_ptr cleanup;
16 } testcase;
17
18 #endif // _TESTCASE_H_