Mercurial > MadButterfly
annotate src/testcase.c @ 5:9c331ec9e210
SVG path is partially supported
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Sat, 26 Jul 2008 01:37:35 +0800 |
parents | b5c0162ccf69 |
children | 79e9edf4c00a |
rev | line source |
---|---|
1 | 1 #include <CUnit/Basic.h> |
2 | |
3 extern CU_pSuite get_coord_suite(void); | |
5
9c331ec9e210
SVG path is partially supported
Thinker K.F. Li <thinker@branda.to>
parents:
1
diff
changeset
|
4 extern CU_pSuite get_geo_suite(void); |
9c331ec9e210
SVG path is partially supported
Thinker K.F. Li <thinker@branda.to>
parents:
1
diff
changeset
|
5 extern CU_pSuite get_shape_path_suite(void); |
1 | 6 |
7 int | |
8 main(int argc, char * const argv[]) { | |
9 CU_pSuite suite; | |
10 | |
11 if(CU_initialize_registry() != CUE_SUCCESS) | |
12 return CU_get_error(); | |
13 | |
14 get_coord_suite(); | |
5
9c331ec9e210
SVG path is partially supported
Thinker K.F. Li <thinker@branda.to>
parents:
1
diff
changeset
|
15 get_geo_suite(); |
9c331ec9e210
SVG path is partially supported
Thinker K.F. Li <thinker@branda.to>
parents:
1
diff
changeset
|
16 get_shape_path_suite(); |
1 | 17 |
18 CU_basic_set_mode(CU_BRM_VERBOSE); | |
19 CU_basic_run_tests(); | |
20 CU_cleanup_registry(); | |
21 | |
22 return CU_get_error(); | |
23 } |