From 2ecf711106e2aa63962b38381dec2558cc2e8640 Mon Sep 17 00:00:00 2001 From: fdai7892 Date: Wed, 7 Feb 2024 20:13:54 +0100 Subject: [PATCH] =?UTF-8?q?Unittest:=20M=C3=BCnzwurf=20spieler=20x=20start?= =?UTF-8?q?et?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test_duellist_spielesammlung_projekt.c | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/test/test_duellist_spielesammlung_projekt.c b/src/test/test_duellist_spielesammlung_projekt.c index e69de29..61991d6 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -0,0 +1,21 @@ +// test_duellist-spielesammlun-projekt.h +#ifdef TEST +#include "unity.h" +#include "duellist-spielesammlung-projekt.h" + +void setUp(void) {} + +void tearDown(void) {} + + +void test_coinflip_player_x_starts(void) { + // Arrange + TicTacToeGame game; + + // Act + GameResult result = initializeGame(&game); + + // Assert + TEST_ASSERT_EQUAL(SUCCESS, result); + TEST_ASSERT_TRUE(game.currentPlayer == PLAYER_X || game.currentPlayer == PLAYER_O); +}