reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/Support/SpecialCaseListTest.cpp
   53   EXPECT_TRUE(SCL->inSection("", "src", "hello"));
   54   EXPECT_TRUE(SCL->inSection("", "src", "bye"));
   55   EXPECT_TRUE(SCL->inSection("", "src", "hi", "category"));
   56   EXPECT_TRUE(SCL->inSection("", "src", "zzzz", "category"));
   57   EXPECT_FALSE(SCL->inSection("", "src", "hi"));
   58   EXPECT_FALSE(SCL->inSection("", "fun", "hello"));
   59   EXPECT_FALSE(SCL->inSection("", "src", "hello", "category"));
   61   EXPECT_EQ(3u, SCL->inSectionBlame("", "src", "hello"));
   62   EXPECT_EQ(4u, SCL->inSectionBlame("", "src", "bye"));
   63   EXPECT_EQ(5u, SCL->inSectionBlame("", "src", "hi", "category"));
   64   EXPECT_EQ(6u, SCL->inSectionBlame("", "src", "zzzz", "category"));
   65   EXPECT_EQ(0u, SCL->inSectionBlame("", "src", "hi"));
   66   EXPECT_EQ(0u, SCL->inSectionBlame("", "fun", "hello"));
   67   EXPECT_EQ(0u, SCL->inSectionBlame("", "src", "hello", "category"));