Lines Matching refs:matchers
287 std::tuple<> matchers; in TEST() local
290 EXPECT_TRUE(TupleMatches(matchers, values)); in TEST()
294 std::tuple<Matcher<int> > matchers(Eq(1)); in TEST() local
297 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
298 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
302 std::tuple<Matcher<int>, Matcher<char> > matchers(Eq(1), Eq('a')); in TEST() local
306 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
307 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
308 EXPECT_FALSE(TupleMatches(matchers, values3)); in TEST()
309 EXPECT_FALSE(TupleMatches(matchers, values4)); in TEST()
316 matchers(Eq(1), Eq('a'), Eq(true), Eq(2L), Eq("hi")); in TEST() local
321 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
322 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
323 EXPECT_FALSE(TupleMatches(matchers, values3)); in TEST()