| 450 | } |
| 451 | |
| 452 | static void BufferBuilderLargeWrites( |
| 453 | benchmark::State& state) { // NOLINT non-const reference |
| 454 | // A 1.5MB datum |
| 455 | std::string datum(1500000, 'x'); |
| 456 | return BenchmarkBufferBuilder(datum, state); |
| 457 | } |
| 458 | |
| 459 | BENCHMARK(BufferBuilderTinyWrites)->UseRealTime(); |
| 460 | BENCHMARK(BufferBuilderSmallWrites)->UseRealTime(); |
nothing calls this directly
no test coverage detected