| 189 | } |
| 190 | |
| 191 | inline std::set<std::string> getAllDeclNames(decl::Type type) |
| 192 | { |
| 193 | // Iterate over all decls and collect the names |
| 194 | std::set<std::string> foundNames; |
| 195 | |
| 196 | GlobalDeclarationManager().foreachDeclaration(type, [&](const decl::IDeclaration::Ptr& declaration) |
| 197 | { |
| 198 | foundNames.insert(declaration->getDeclName()); |
| 199 | }); |
| 200 | |
| 201 | return foundNames; |
| 202 | } |
| 203 | |
| 204 | inline void checkKnownTestDeclNames() |
| 205 | { |
no test coverage detected