| 65 | class FileTestFixture : public ::testing::Test { |
| 66 | public: |
| 67 | void SetUp() { |
| 68 | ASSERT_OK_AND_ASSIGN(temp_dir_, TemporaryDir::Make("file-test-")); |
| 69 | path_ = TempFile("arrow-test-io-file.txt"); |
| 70 | EnsureFileDeleted(); |
| 71 | } |
| 72 | |
| 73 | std::string TempFile(std::string_view path) { |
| 74 | return temp_dir_->path().Join(std::string(path)).ValueOrDie().ToString(); |
nothing calls this directly
no test coverage detected