| 224 | // copy the data at all, so we only measure small writes. |
| 225 | |
| 226 | static void FileOutputStreamSmallWritesToNull( |
| 227 | benchmark::State& state) { // NOLINT non-const reference |
| 228 | auto stream = *io::FileOutputStream::Open(GetNullFile()); |
| 229 | |
| 230 | BenchmarkStreamingWrites(state, small_sizes, stream.get()); |
| 231 | } |
| 232 | |
| 233 | static void BufferedOutputStreamSmallWritesToNull( |
| 234 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected