Home | History | Annotate | Download | only in test

Lines Matching refs:Tuple3

169   typedef tuple<char, int, int> Tuple3;
170 const Matcher<Tuple3> m = Args<1, 2>(Lt());
171 EXPECT_TRUE(m.Matches(Tuple3('a', 1, 2)));
172 EXPECT_FALSE(m.Matches(Tuple3('b', 2, 2)));
176 typedef tuple<char, char, int> Tuple3;
177 const Matcher<const Tuple3&> m = Args<0, 1>(Lt());
178 EXPECT_TRUE(m.Matches(Tuple3('a', 'b', 2)));
179 EXPECT_FALSE(m.Matches(Tuple3('b', 'b', 2)));