Split winner code.

This commit is contained in:
2021-10-15 00:13:05 -07:00
parent 8945c79450
commit 14dda414ee
5 changed files with 563 additions and 533 deletions

View File

@ -16,13 +16,14 @@ void tearDown(void) {
}
int32_t main() {
return test_turn_h();
// return (
// test_pot_h() ||
// test_player_h() ||
// test_dealer_h() ||
// test_bet_h() ||
// test_card_h() ||
// test_poker()
// );
return (
test_bet_h() ||
test_card_h() ||
test_dealer_h() ||
test_player_h() ||
test_poker() ||
test_pot_h() ||
test_turn_h() ||
test_winner_h()
);
}