| 344 | class TestOptionalFields : public ::testing::Test { |
| 345 | protected: |
| 346 | void SetUp() { |
| 347 | writer_ = StreamWriter{ParquetFileWriter::Open(CreateOutputStream(), GetSchema())}; |
| 348 | } |
| 349 | |
| 350 | void TearDown() { writer_ = StreamWriter{}; } |
| 351 |
nothing calls this directly
no test coverage detected