| 528 | } |
| 529 | |
| 530 | Status MockFileSystem::DeleteRootDirContents() { |
| 531 | auto guard = impl_->lock_guard(); |
| 532 | |
| 533 | impl_->RootDir().entries.clear(); |
| 534 | return Status::OK(); |
| 535 | } |
| 536 | |
| 537 | Status MockFileSystem::DeleteFile(const std::string& path) { |
| 538 | RETURN_NOT_OK(ValidatePath(path)); |
nothing calls this directly
no test coverage detected