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.

45 lines
957 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. void test_king_alive() {
  11. char** brett = malloc(8 * sizeof(char*));
  12. for(int i = 0; i < 8; i++) {
  13. brett[i] = malloc(8 * sizeof(char));
  14. for(int j = 0; j < 8; j++) {
  15. brett[i][j] = '.';
  16. }
  17. }
  18. // Beide Könige sind auf dem Brett
  19. brett[0][0] = 'K';
  20. brett[7][7] = 'k';
  21. assert(king_alive(brett) == true);
  22. // Nur der weiße König auf dem Brett
  23. brett[7][7] = '.';
  24. assert(king_alive(brett) == false);
  25. // Nur schwarzer König auf dem Brett
  26. brett[0][0] = '.';
  27. brett[7][7] = 'k';
  28. assert(king_alive(brett) == false);
  29. // Kein König
  30. brett[7][7] = '.';
  31. assert(king_alive(brett) == false);
  32. for(int i = 0; i < 8; i++) {
  33. free(brett[i]);
  34. }
  35. free(brett);
  36. }
  37. #endif // TEST MISC