| 116 | } |
| 117 | |
| 118 | static void ValidateSmallNonAscii( |
| 119 | benchmark::State& state) { // NOLINT non-const reference |
| 120 | BenchmarkUTF8Validation(state, valid_non_ascii, true); |
| 121 | } |
| 122 | |
| 123 | static void ValidateLargeAscii(benchmark::State& state) { // NOLINT non-const reference |
| 124 | auto s = MakeLargeString(valid_ascii, 100000); |
nothing calls this directly
no test coverage detected