| 132 | } |
| 133 | |
| 134 | static void ValidateLargeNonAscii( |
| 135 | benchmark::State& state) { // NOLINT non-const reference |
| 136 | auto s = MakeLargeString(valid_non_ascii, 100000); |
| 137 | BenchmarkUTF8Validation(state, s, true); |
| 138 | } |
| 139 | |
| 140 | BENCHMARK(ValidateTinyAscii); |
| 141 | BENCHMARK(ValidateTinyNonAscii); |
nothing calls this directly
no test coverage detected