From 6cbf96dba473ce13d38f8192aba4bff6f1953f05 Mon Sep 17 00:00:00 2001 From: fdai7892 Date: Wed, 7 Feb 2024 19:48:07 +0000 Subject: [PATCH] =?UTF-8?q?Revert=20"Unittest:=20G=C3=BCltige"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 378b499b1c0f64fa6e65ad6bb90d0f9bf45c1ddd --- src/test/test_duellist_spielesammlung_projekt.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/test/test_duellist_spielesammlung_projekt.c b/src/test/test_duellist_spielesammlung_projekt.c index 9af7c6d..b990cfe 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -89,19 +89,6 @@ void test_valid_move_and_switch_player(void) { } -void test_invalid_input(void) { - // Arrange - TicTacToeGame game = { .board = {{PLAYER_X, EMPTY, EMPTY}, - {EMPTY, EMPTY, EMPTY}, - {EMPTY, EMPTY, EMPTY}}, - .currentPlayer = PLAYER_O }; - - // Act - GameResult result = makeMove(&game, 0, 0); - - // Assert - TEST_ASSERT_EQUAL(INVALID_MOVE, result); -}