| 722 | } |
| 723 | |
| 724 | Result<std::shared_ptr<io::RandomAccessFile>> MockFileSystem::OpenInputFile( |
| 725 | const std::string& path) { |
| 726 | RETURN_NOT_OK(ValidatePath(path)); |
| 727 | auto guard = impl_->lock_guard(); |
| 728 | |
| 729 | return impl_->OpenInputReader(path); |
| 730 | } |
| 731 | |
| 732 | Result<std::shared_ptr<io::OutputStream>> MockFileSystem::OpenOutputStream( |
| 733 | const std::string& path, const std::shared_ptr<const KeyValueMetadata>& metadata) { |
nothing calls this directly
no test coverage detected