| 348 | } |
| 349 | |
| 350 | static void BufferOutputStreamLargeWrites( |
| 351 | benchmark::State& state) { // NOLINT non-const reference |
| 352 | // A 1.5MB datum |
| 353 | std::string datum(1500000, 'x'); |
| 354 | return BenchmarkBufferOutputStream(datum, state); |
| 355 | } |
| 356 | |
| 357 | BENCHMARK(BufferOutputStreamTinyWrites)->UseRealTime(); |
| 358 | BENCHMARK(BufferOutputStreamSmallWrites)->UseRealTime(); |
nothing calls this directly
no test coverage detected