| 121 | } |
| 122 | |
| 123 | static void ValidateLargeAscii(benchmark::State& state) { // NOLINT non-const reference |
| 124 | auto s = MakeLargeString(valid_ascii, 100000); |
| 125 | BenchmarkASCIIValidation(state, s, true); |
| 126 | } |
| 127 | |
| 128 | static void ValidateLargeAlmostAscii( |
| 129 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected