| 348 | EXPECT_TRUE(dir != nullptr) << "Error open directory: " + dirname; |
| 349 | if (nullptr == dir) return jsons; |
| 350 | struct dirent* ent = nullptr; |
| 351 | while (nullptr != (ent = readdir(dir))) { |
| 352 | struct stat st; |
| 353 | std::string filename = dirname + ent->d_name; |
nothing calls this directly
no outgoing calls
no test coverage detected