Home | History | Annotate | Download | only in test

Lines Matching refs:CountIf

155 using testing::internal::CountIf;
588 // Tests CountIf().
592 TEST(ContainerUtilityTest, CountIf) {
594 EXPECT_EQ(0, CountIf(v, IsPositive)); // Works for an empty container.
598 EXPECT_EQ(0, CountIf(v, IsPositive)); // Works when no value satisfies.
603 EXPECT_EQ(2, CountIf(v, IsPositive));