Formatting automated-tests
[platform/core/uifw/dali-adaptor.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 {
13   const char*  name;
14   tc_fun_ptr   function;
15   void_fun_ptr startup;
16   void_fun_ptr cleanup;
17 } testcase;
18
19 #endif // _TESTCASE_H_