Lines Matching refs:Lt
914 // Tests that Lt(v) matches anything < v.
916 Matcher<const std::string&> m1 = Lt("Hello");
922 // Tests that Lt(v) describes itself properly.
924 Matcher<int> m = Lt(5);
980 EXPECT_CALL(helper, Call(Lt(ByRef(m))));
1387 EXPECT_THAT(p, Not(Key(Lt(25))));
1418 EXPECT_THAT(p, Not(Key(Lt(25))));
1426 Matcher<int> is_negative = Lt(0);
1535 EXPECT_THAT(p, Not(Pair(Lt(25), "foo")));
1543 EXPECT_THAT(p, Not(Pair(Lt(13), HasSubstr("a"))));
1554 Matcher<int> is_negative = Lt(0);
1735 EXPECT_THAT(pair, Not(Pair(Lt(7), "ABC")));