You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
313 B

  1. #ifdef TEST
  2. #include "unity.h"
  3. #include <stdlib.h>
  4. #include "PuzzleI.h"
  5. #include "Spieler.h"
  6. #include "Koenig.h"
  7. #include "Turm.h"
  8. void setUp(void) {
  9. }
  10. void tearDown(void) {
  11. }
  12. void test_puzzlebrett_erstellen(void) {
  13. char** brett = Puzzlebrett_erstellen();
  14. print_Puzzlebrett(brett);
  15. }
  16. #endif // TEST