| 714 | } |
| 715 | |
| 716 | Result<std::shared_ptr<io::InputStream>> MockFileSystem::OpenInputStream( |
| 717 | const std::string& path) { |
| 718 | RETURN_NOT_OK(ValidatePath(path)); |
| 719 | auto guard = impl_->lock_guard(); |
| 720 | |
| 721 | return impl_->OpenInputReader(path); |
| 722 | } |
| 723 | |
| 724 | Result<std::shared_ptr<io::RandomAccessFile>> MockFileSystem::OpenInputFile( |
| 725 | const std::string& path) { |
nothing calls this directly
no test coverage detected