From aca822979913e16acde3ce27c4d50d7a3fc6f4a9 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 15 Oct 2021 00:18:18 -0700 Subject: [PATCH] Rerunning all tests. --- test/poker/poker.c | 2 +- test/poker/poker.h | 2 +- test/tests.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/poker/poker.c b/test/poker/poker.c index 40743ff1..f535239a 100644 --- a/test/poker/poker.c +++ b/test/poker/poker.c @@ -177,7 +177,7 @@ void test_pokerInRoundGetCount_should_ReturnCountOfPlayersInRound(void) { TEST_ASSERT_EQUAL_UINT8(0x00, pokerInRoundGetCount(&poker)); } -int test_poker() { +int test_poker_h() { UNITY_BEGIN(); RUN_TEST(test_pokerInit_should_InitializePokerGame); diff --git a/test/poker/poker.h b/test/poker/poker.h index edf3ac67..c0ea50a8 100644 --- a/test/poker/poker.h +++ b/test/poker/poker.h @@ -7,4 +7,4 @@ #include #include -int test_poker(); \ No newline at end of file +int test_poker_h(); \ No newline at end of file diff --git a/test/tests.c b/test/tests.c index a8b117e8..afc8d262 100644 --- a/test/tests.c +++ b/test/tests.c @@ -21,7 +21,7 @@ int32_t main() { test_card_h() || test_dealer_h() || test_player_h() || - test_poker() || + test_poker_h() || test_pot_h() || test_turn_h() || test_winner_h()