|
@ -12,6 +12,7 @@ extern void setUp(void); |
|
|
extern void tearDown(void); |
|
|
extern void tearDown(void); |
|
|
extern void test_print_Schachfeld(void); |
|
|
extern void test_print_Schachfeld(void); |
|
|
extern void test_print_Schachfeld_Turm_weiss(void); |
|
|
extern void test_print_Schachfeld_Turm_weiss(void); |
|
|
|
|
|
extern void test_print_Schachfeld_Bauern_weiss(void); |
|
|
extern void test_print_Schachfeld_dame_schwarz(void); |
|
|
extern void test_print_Schachfeld_dame_schwarz(void); |
|
|
extern void test_read_input(void); |
|
|
extern void test_read_input(void); |
|
|
|
|
|
|
|
@ -80,8 +81,9 @@ int main(void) |
|
|
UnityBegin("test_schach.c"); |
|
|
UnityBegin("test_schach.c"); |
|
|
run_test(test_print_Schachfeld, "test_print_Schachfeld", 16); |
|
|
run_test(test_print_Schachfeld, "test_print_Schachfeld", 16); |
|
|
run_test(test_print_Schachfeld_Turm_weiss, "test_print_Schachfeld_Turm_weiss", 30); |
|
|
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); |
|
|
|
|
|
|
|
|
run_test(test_print_Schachfeld_Bauern_weiss, "test_print_Schachfeld_Bauern_weiss", 44); |
|
|
|
|
|
run_test(test_print_Schachfeld_dame_schwarz, "test_print_Schachfeld_dame_schwarz", 60); |
|
|
|
|
|
run_test(test_read_input, "test_read_input", 77); |
|
|
|
|
|
|
|
|
return UnityEnd(); |
|
|
return UnityEnd(); |
|
|
} |
|
|
} |