Creates a random number in the range of [0, max).
| 19 | |
| 20 | // Creates a random number in the range of [0, max). |
| 21 | int GenerateRandomNumber(int max) { return std::rand() % max; } |
| 22 | |
| 23 | std::string CreateRandomString(int32_t index) { |
| 24 | static const size_t len = 1024; |
no outgoing calls
no test coverage detected