|
|
@ -11,7 +11,8 @@ char* GlobalOrderError; |
|
|
|
extern void setUp(void); |
|
|
|
extern void tearDown(void); |
|
|
|
extern void test_print_Schachfeld(void); |
|
|
|
extern void test_print_Schachfeld_Turm(void); |
|
|
|
extern void test_print_Schachfeld_Turm_weiss(void); |
|
|
|
extern void test_print_Schachfeld_dame_schwarz(void); |
|
|
|
extern void test_read_input(void); |
|
|
|
|
|
|
|
|
|
|
@ -78,8 +79,9 @@ int main(void) |
|
|
|
{ |
|
|
|
UnityBegin("test_schach.c"); |
|
|
|
run_test(test_print_Schachfeld, "test_print_Schachfeld", 16); |
|
|
|
run_test(test_print_Schachfeld_Turm, "test_print_Schachfeld_Turm", 30); |
|
|
|
run_test(test_read_input, "test_read_input", 44); |
|
|
|
run_test(test_print_Schachfeld_Turm_weiss, "test_print_Schachfeld_Turm_weiss", 30); |
|
|
|
run_test(test_print_Schachfeld_dame_schwarz, "test_print_Schachfeld_dame_schwarz", 44); |
|
|
|
run_test(test_read_input, "test_read_input", 61); |
|
|
|
|
|
|
|
return UnityEnd(); |
|
|
|
} |