Lines Matching refs:Gt

97 using testing::Gt;
946 // Tests that Gt(v) matches anything > v.
948 Matcher<double> m1 = Gt(0);
954 // Tests that Gt(v) describes itself properly.
956 Matcher<int> m = Gt(5);
1324 Matcher<int> is_positive = Gt(0);
1440 Matcher<int> is_positive = Gt(0);
1961 // Tests that Gt() matches a 2-tuple where the first field > the
1964 Matcher<const Tuple2&> m = Gt();
1970 // Tests that Gt() describes itself properly.
1972 Matcher<const Tuple2&> m = Gt();
2038 Matcher<int> greater_than_5 = Gt(5);
2065 m = AllOf(Gt(0), Ne(1), Ne(2));
2071 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
2129 m = AllOf(Gt(0), Ne(1), Ne(2));
2136 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
2161 m = AllOf(Gt(0), Ne(1), Ne(2));
2168 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
2188 Matcher<int> greater_than_5 = Gt(5);
2275 m = AnyOf(Le(0), Gt(10), 3, 5, 7);
2333 m = AnyOf(Le(0), Gt(10), 3, 5, 7);
2361 m = AnyOf(Le(0), Gt(10), 3, 5, 7);
2373 Matcher<int> greater_than_5 = Gt(5);
2401 m = AnyOf(GreaterThan(10), Gt(20), GreaterThan(30));
2542 EXPECT_FALSE(Value(5, Gt(10)));
2592 EXPECT_THAT(42, AllArgs(Gt(0)));
2613 .With(AllArgs(Gt()))
2642 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, ::testing::Gt(10)),
2695 Matcher<int> is_greater_than_5 = Gt(5);
3333 const Matcher<int*> m = Pointee(Gt(3));
5393 EXPECT_THAT(another_map, Each(Pair(_, Gt(0))));
5398 EXPECT_THAT(a, Each(Gt(0)));
5399 EXPECT_THAT(a, Not(Each(Gt(1))));
5405 EXPECT_THAT(make_tuple(pointer, 2), Each(Gt(0)));
5406 EXPECT_THAT(make_tuple(pointer, 2), Not(Each(Gt(1))));
5473 EXPECT_THAT(lhs, Not(Pointwise(Gt(), rhs)));
5482 EXPECT_THAT(lhs, Pointwise(Gt(), rhs));
5490 EXPECT_THAT(lhs, Pointwise(Gt(), {1, 2, 3}));
5499 EXPECT_THAT(lhs, Not(Pointwise(Gt(), rhs)));
5501 Explain(Pointwise(Gt(), rhs), lhs));
5504 EXPECT_THAT(lhs, Not(Pointwise(Gt(), rhs2)));
5584 EXPECT_THAT(lhs, Not(UnorderedPointwise(Gt(), rhs)));
5593 EXPECT_THAT(lhs, UnorderedPointwise(Gt(), rhs));
5601 EXPECT_THAT(lhs, UnorderedPointwise(Gt(), {5, 1, 3}));
5610 EXPECT_THAT(lhs, Not(UnorderedPointwise(Gt(), rhs)));
5612 Explain(UnorderedPointwise(Gt(), rhs), lhs));
5615 EXPECT_THAT(lhs, Not(UnorderedPointwise(Gt(), rhs2)));