| 40 | const char* GetDataFile() const { return "stream_writer_test.parquet"; } |
| 41 | |
| 42 | void SetUp() { |
| 43 | writer_ = StreamWriter{ParquetFileWriter::Open(CreateOutputStream(), GetSchema())}; |
| 44 | } |
| 45 | |
| 46 | void TearDown() { writer_ = StreamWriter{}; } |
| 47 |
nothing calls this directly
no test coverage detected