Home | History | Annotate | Download | only in test

Lines Matching refs:Gt

87 using testing::Gt;
770 // Tests that Gt(v) matches anything > v.
772 Matcher<double> m1 = Gt(0);
778 // Tests that Gt(v) describes itself properly.
780 Matcher<int> m = Gt(5);
1148 Matcher<int> is_positive = Gt(0);
1264 Matcher<int> is_positive = Gt(0);
1785 // Tests that Gt() matches a 2-tuple where the first field > the
1788 Matcher<const Tuple2&> m = Gt();
1794 // Tests that Gt() describes itself properly.
1796 Matcher<const Tuple2&> m = Gt();
1862 Matcher<int> greater_than_5 = Gt(5);
1889 m = AllOf(Gt(0), Ne(1), Ne(2));
1895 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
1931 m = AllOf(Gt(0), Ne(1), Ne(2));
1938 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
1963 m = AllOf(Gt(0), Ne(1), Ne(2));
1970 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
1990 Matcher<int> greater_than_5 = Gt(5);
2077 m = AnyOf(Le(0), Gt(10), 3, 5, 7);
2117 m = AnyOf(Le(0), Gt(10), 3, 5, 7);
2145 m = AnyOf(Le(0), Gt(10), 3, 5, 7);
2157 Matcher<int> greater_than_5 = Gt(5);
2185 m = AnyOf(GreaterThan(10), Gt(20), GreaterThan(30));
2303 EXPECT_FALSE(Value(5, Gt(10)));
2353 EXPECT_THAT(42, AllArgs(Gt(0)));
2374 .With(AllArgs(Gt()))
2403 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, ::testing::Gt(10)),
2456 Matcher<int> is_greater_than_5 = Gt(5);
2773 const Matcher<int*> m = Pointee(Gt(3));
3882 EXPECT_THAT(another_map, Each(Pair(_, Gt(0))));
3887 EXPECT_THAT(a, Each(Gt(0)));
3888 EXPECT_THAT(a, Not(Each(Gt(1))));
3894 EXPECT_THAT(make_tuple(pointer, 2), Each(Gt(0)));
3895 EXPECT_THAT(make_tuple(pointer, 2), Not(Each(Gt(1))));
3962 EXPECT_THAT(lhs, Not(Pointwise(Gt(), rhs)));
3971 EXPECT_THAT(lhs, Pointwise(Gt(), rhs));
3978 EXPECT_THAT(lhs, Not(Pointwise(Gt(), rhs)));
3980 Explain(Pointwise(Gt(), rhs), lhs));
3983 EXPECT_THAT(lhs, Not(Pointwise(Gt(), rhs2)));