Browse Source

Test KannKoenigEntkommen,

Anton Lohrey
remotes/origin/Läufer-fertig,-Hendrik-Voß
fdai7492 11 months ago
parent
commit
e5d5b7240a
  1. 8
      test/test_Koenig.c

8
test/test_Koenig.c

@ -95,4 +95,12 @@ void test_Rochieren(void) {
// Clean up
Schachbrettspeicher_freigeben(testBrett);
}
void test_KoenigKannEntkommen(void) {
char** testBrett = Schachbrett_erstellen();
testBrett[4][4] = 'k';
print_Schachfeld(testBrett);
TEST_ASSERT_TRUE(KannKoenigEntkommen(testBrett, 4, 4, PLAYER_BLACK));
TEST_ASSERT_FALSE(KannKoenigEntkommen(testBrett, 4, 7, PLAYER_BLACK));
}
#endif // TEST
Loading…
Cancel
Save