| 97 | } |
| 98 | |
| 99 | void MemoryMapFixture::CreateFile(const std::string& path, int64_t size) { |
| 100 | ASSERT_OK(MemoryMappedFile::Create(path, size)); |
| 101 | tmp_files_.push_back(path); |
| 102 | } |
| 103 | |
| 104 | Result<std::shared_ptr<MemoryMappedFile>> MemoryMapFixture::InitMemoryMap( |
| 105 | int64_t size, const std::string& path) { |
no test coverage detected