reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
60 EXPECT_FALSE(mgr.HasFixIts()); 62 mgr.AddDiagnostic(std::make_unique<FixItDiag>("no fixit", false)); 63 EXPECT_FALSE(mgr.HasFixIts()); 65 mgr.AddDiagnostic(std::make_unique<FixItDiag>("fixit", true)); 66 EXPECT_TRUE(mgr.HasFixIts()); 68 mgr.AddDiagnostic(std::make_unique<FixItDiag>("no fixit", false)); 69 EXPECT_TRUE(mgr.HasFixIts()); 71 mgr.AddDiagnostic(std::make_unique<FixItDiag>("fixit", true)); 72 EXPECT_TRUE(mgr.HasFixIts());