Lines Matching refs:matchers
291 std::tuple<> matchers;
294 EXPECT_TRUE(TupleMatches(matchers, values));
298 std::tuple<Matcher<int>> matchers(Eq(1));
301 EXPECT_TRUE(TupleMatches(matchers, values1));
302 EXPECT_FALSE(TupleMatches(matchers, values2));
306 std::tuple<Matcher<int>, Matcher<char>> matchers(Eq(1), Eq('a'));
310 EXPECT_TRUE(TupleMatches(matchers, values1));
311 EXPECT_FALSE(TupleMatches(matchers, values2));
312 EXPECT_FALSE(TupleMatches(matchers, values3));
313 EXPECT_FALSE(TupleMatches(matchers, values4));
320 matchers(Eq(1), Eq('a'), Eq(true), Eq(2L), Eq("hi"));
325 EXPECT_TRUE(TupleMatches(matchers, values1));
326 EXPECT_FALSE(TupleMatches(matchers, values2));
327 EXPECT_FALSE(TupleMatches(matchers, values3));