| 100 | } |
| 101 | |
| 102 | uint32_t RandomGenerator::GetUInt32(uint32_t lower, uint32_t upper) { |
| 103 | return RandomUInt(&engine_, lower, upper); |
| 104 | } |
| 105 | |
| 106 | uint32_t RandomGenerator::GetUInt32(uint32_t bound) { |
| 107 | assert(bound > 0 && "|bound| must be greater than 0"); |
no test coverage detected