| 715 | class TestLocalFile : public ::testing::Test { |
| 716 | public: |
| 717 | void SetUp() { |
| 718 | std::string dir_string(test::get_data_dir()); |
| 719 | |
| 720 | std::stringstream ss; |
| 721 | ss << dir_string << "/" |
| 722 | << "alltypes_plain.parquet"; |
| 723 | |
| 724 | PARQUET_ASSIGN_OR_THROW(handle, ReadableFile::Open(ss.str())); |
| 725 | fileno = handle->file_descriptor(); |
| 726 | } |
| 727 | |
| 728 | void TearDown() {} |
| 729 |
nothing calls this directly
no test coverage detected