| 380 | BENCHMARK(BM_Utf8IsValid_Cord_JapaneseTen); |
| 381 | |
| 382 | void BM_Utf8Validate_String_AsciiTen(benchmark::State& state) { |
| 383 | for (auto s : state) { |
| 384 | benchmark::DoNotOptimize(Utf8Validate("0123456789")); |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | BENCHMARK(BM_Utf8Validate_String_AsciiTen); |
| 389 |
nothing calls this directly
no test coverage detected