(hand, other, expected)
| 181 | |
| 182 | @pytest.mark.parametrize(("hand", "other", "expected"), generate_random_hands()) |
| 183 | def test_compare_random(hand, other, expected): |
| 184 | assert PokerHand(hand).compare_with(PokerHand(other)) == expected |
| 185 | |
| 186 | |
| 187 | def test_hand_sorted(): |
nothing calls this directly
no test coverage detected