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.

46 lines
979 B

  1. #ifdef TEST
  2. #include "unity.h"
  3. #include "Schachbrett.h"
  4. #include "Spieler.h"
  5. #include "Misc.h"
  6. #include <stdlib.h>
  7. #include <stdio.h>
  8. #include <assert.h>
  9. #include "Input.h"
  10. #include "Tutorial.h"
  11. void test_king_alive() {
  12. char** brett = malloc(8 * sizeof(char*));
  13. for(int i = 0; i < 8; i++) {
  14. brett[i] = malloc(8 * sizeof(char));
  15. for(int j = 0; j < 8; j++) {
  16. brett[i][j] = '.';
  17. }
  18. }
  19. // Beide Könige sind auf dem Brett
  20. brett[0][0] = 'K';
  21. brett[7][7] = 'k';
  22. assert(king_alive(brett) == true);
  23. // Nur der weiße König auf dem Brett
  24. brett[7][7] = '.';
  25. assert(king_alive(brett) == false);
  26. // Nur schwarzer König auf dem Brett
  27. brett[0][0] = '.';
  28. brett[7][7] = 'k';
  29. assert(king_alive(brett) == false);
  30. // Kein König
  31. brett[7][7] = '.';
  32. assert(king_alive(brett) == false);
  33. for(int i = 0; i < 8; i++) {
  34. free(brett[i]);
  35. }
  36. free(brett);
  37. }
  38. #endif // TEST MISC