Return a skewed potentially long string
| 33 | |
| 34 | // Return a skewed potentially long string |
| 35 | static std::string RandomSkewedString(int i, Random* rnd) { |
| 36 | return BigString(NumberString(i), rnd->Skewed(17)); |
| 37 | } |
| 38 | |
| 39 | class LogTest { |
| 40 | public: |
no test coverage detected