Formatting automated-tests
[platform/core/uifw/dali-adaptor.git] / automated-tests / src / common / testcase.h
index 011a452..a333696 100644 (file)
@@ -8,11 +8,12 @@ typedef void (*void_fun_ptr)(void);
 typedef int (*tc_fun_ptr)(void);
 
 /* struct describing specific testcase */
-typedef struct testcase_s {
-    const char* name;
-    tc_fun_ptr function;
-    void_fun_ptr startup;
-    void_fun_ptr cleanup;
+typedef struct testcase_s
+{
+  const char*  name;
+  tc_fun_ptr   function;
+  void_fun_ptr startup;
+  void_fun_ptr cleanup;
 } testcase;
 
 #endif // _TESTCASE_H_