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()