MockHandGenerator implementation
| 12 | |
| 13 | // MockHandGenerator implementation |
| 14 | MockHandGenerator::MockHandGenerator(unsigned int seed) |
| 15 | : generator_(seed), cardDist_(0, 12), suitDist_(0, 3) { |
| 16 | } |
| 17 | |
| 18 | void MockHandGenerator::GenerateRandomDistribution(int hand_dist[DDS_HANDS]) |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected