Home | History | Annotate | Download | only in test

Lines Matching refs:Tuple3

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