| 61 | std::vector<TestPathTree> subtrees; |
| 62 | |
| 63 | explicit TestPathTree(std::string file_path) |
| 64 | : info(FileInfo::File(std::move(file_path))) {} |
| 65 | |
| 66 | TestPathTree(std::string dir_path, std::vector<TestPathTree> subtrees) |
| 67 | : info(FileInfo::Dir(std::move(dir_path))), subtrees(std::move(subtrees)) {} |
nothing calls this directly
no test coverage detected