| 126 | } |
| 127 | |
| 128 | static void ValidateLargeAlmostAscii( |
| 129 | benchmark::State& state) { // NOLINT non-const reference |
| 130 | auto s = MakeLargeString(valid_almost_ascii, 100000); |
| 131 | BenchmarkUTF8Validation(state, s, true); |
| 132 | } |
| 133 | |
| 134 | static void ValidateLargeNonAscii( |
| 135 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected