| 470 | } |
| 471 | |
| 472 | inline void expectDeclIsNotPresent(decl::Type type, const std::string& declName) |
| 473 | { |
| 474 | EXPECT_FALSE(GlobalDeclarationManager().findDeclaration(type, declName)) |
| 475 | << declName << " should not be present"; |
| 476 | } |
| 477 | |
| 478 | inline void expectDeclContains(decl::Type type, const std::string& declName, const std::string& expectedContents) |
| 479 | { |
no test coverage detected