Lines Matching defs:V0
934 const std::vector<int> V0 = {}, V1 = {1}, V2 = {1, 2};
937 EXPECT_EQ(hasSingleElement(V0), false);
944 const std::list<int> V0 = {}, V1 = {1}, V2 = {1, 2};
947 EXPECT_TRUE(hasNItems(V0, 0));
948 EXPECT_FALSE(hasNItems(V0, 2));
958 const std::list<int> V0 = {}, V1 = {1}, V2 = {1, 2};
980 const std::list<int> V0 = {}, V1 = {1}, V2 = {1, 2};
983 EXPECT_TRUE(hasNItemsOrLess(V0, 0));
984 EXPECT_TRUE(hasNItemsOrLess(V0, 1));
985 EXPECT_TRUE(hasNItemsOrLess(V0, 2));