From f80b6bcef5cf27574ae3ac9c946bf3804cb71a61 Mon Sep 17 00:00:00 2001 From: fdai7892 Date: Wed, 7 Feb 2024 20:58:27 +0100 Subject: [PATCH] Zeilennummer<0 --- src/test/test_duellist_spielesammlung_projekt.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/test/test_duellist_spielesammlung_projekt.c b/src/test/test_duellist_spielesammlung_projekt.c index 1d3c97e..74e6dda 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -118,6 +118,20 @@ void test_valid_input(void) { } +void test_invalid_input_type1(void) { + // Arrange + TicTacToeGame game = { .board = {{PLAYER_X, EMPTY, EMPTY}, + {EMPTY, EMPTY, EMPTY}, + {EMPTY, EMPTY, EMPTY}}, + .currentPlayer = PLAYER_O }; + + // Act + GameResult result = makeMove(&game, -1, 0); + + // Assert + TEST_ASSERT_EQUAL(INVALID_MOVE, result); +} +