| 257 | } |
| 258 | |
| 259 | std::string PositionComparator::RanksToString(const unsigned short ranks[DDS_SUITS]) |
| 260 | { |
| 261 | std::ostringstream oss; |
| 262 | oss << "Ranks["; |
| 263 | for (int suit = 0; suit < DDS_SUITS; suit++) { |
| 264 | if (suit > 0) oss << ","; |
| 265 | oss << "0x" << std::hex << ranks[suit]; |
| 266 | } |
| 267 | oss << "]"; |
| 268 | return oss.str(); |
| 269 | } |
| 270 | |
| 271 | // TestDataValidator implementation |
| 272 | bool TestDataValidator::IsValidHandDistribution(const int hand_dist[DDS_HANDS]) |
nothing calls this directly
no outgoing calls
no test coverage detected