| 548 | FileSystem* fs_; |
| 549 | |
| 550 | Result<FileInfoVector> Create(const std::string& base) { |
| 551 | FileInfoVector infos; |
| 552 | RETURN_NOT_OK(Create(base, 0, &infos)); |
| 553 | return infos; |
| 554 | } |
| 555 | |
| 556 | Status Create(const std::string& base, int depth, FileInfoVector* infos) { |
| 557 | for (int i = 0; i < kFilesPerDir; ++i) { |
no test coverage detected