| 464 | } |
| 465 | |
| 466 | inline void expectDeclIsPresent(decl::Type type, const std::string& declName) |
| 467 | { |
| 468 | EXPECT_TRUE(GlobalDeclarationManager().findDeclaration(type, declName)) |
| 469 | << declName << " should be present"; |
| 470 | } |
| 471 | |
| 472 | inline void expectDeclIsNotPresent(decl::Type type, const std::string& declName) |
| 473 | { |
no test coverage detected