Home | History | Annotate | Download | only in test

Lines Matching refs:Tuple3

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