Rerunning all tests.

This commit is contained in:
2021-10-15 00:18:18 -07:00
parent 14dda414ee
commit aca8229799
3 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -7,4 +7,4 @@
#include <unity.h>
#include <poker/poker.h>
int test_poker();
int test_poker_h();

View File

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