| 49 | } |
| 50 | |
| 51 | static string GenTestString(int copies = 1) { |
| 52 | string result = ""; |
| 53 | for (int i = 0; i < copies; i++) { |
| 54 | result += GetRecord(); |
| 55 | } |
| 56 | return result; |
| 57 | } |
| 58 | |
| 59 | typedef io::ZlibCompressionOptions CompressionOptions; |
| 60 |
no test coverage detected