| 103 | } |
| 104 | |
| 105 | static void ValidateTinyNonAscii(benchmark::State& state) { // NOLINT non-const reference |
| 106 | BenchmarkUTF8Validation(state, tiny_valid_non_ascii, true); |
| 107 | } |
| 108 | |
| 109 | static void ValidateSmallAscii(benchmark::State& state) { // NOLINT non-const reference |
| 110 | BenchmarkASCIIValidation(state, valid_ascii, true); |
nothing calls this directly
no test coverage detected