Lines Matching full:matchers
291 tuple<> matchers;
294 EXPECT_TRUE(TupleMatches(matchers, values));
298 tuple<Matcher<int> > matchers(Eq(1));
302 EXPECT_TRUE(TupleMatches(matchers, values1));
303 EXPECT_FALSE(TupleMatches(matchers, values2));
307 tuple<Matcher<int>, Matcher<char> > matchers(Eq(1), Eq('a'));
313 EXPECT_TRUE(TupleMatches(matchers, values1));
314 EXPECT_FALSE(TupleMatches(matchers, values2));
315 EXPECT_FALSE(TupleMatches(matchers, values3));
316 EXPECT_FALSE(TupleMatches(matchers, values4));
322 matchers(Eq(1), Eq('a'), Eq(true), Eq(2L), Eq("hi"));
328 EXPECT_TRUE(TupleMatches(matchers, values1));
329 EXPECT_FALSE(TupleMatches(matchers, values2));
330 EXPECT_FALSE(TupleMatches(matchers, values3));