Lines Matching refs:Ge

96 using testing::Ge;
932 // Tests that Ge(v) matches anything >= v.
934 Matcher<int> m1 = Ge(0);
940 // Tests that Ge(v) describes itself properly.
942 Matcher<int> m = Ge(5);
1319 EXPECT_THAT(p, Key(Ge(20)));
1424 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o")));
1946 // Tests that Ge() matches a 2-tuple where the first field >= the
1949 Matcher<const Tuple2&> m = Ge();
1955 // Tests that Ge() describes itself properly.
1957 Matcher<const Tuple2&> m = Ge();
2059 m = AllOf(Le(2), Ge(1));
2078 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2126 m = AllOf(Le(2), Ge(1));
2144 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2156 m = AllOf(Le(2), Ge(1));
2176 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2257 m = AnyOf(Le(1), Ge(3));
2317 m = AnyOf(Le(1), Ge(3));
2345 m = AnyOf(Le(1), Ge(3));
2517 EXPECT_TRUE(Matches(Ge(0))(1));
2562 EXPECT_FALSE(ExplainMatchResult(Ge(42), 1.5, &listener2));
2623 ASSERT_THAT(5, Ge(2)) << "This should succeed.";
2625 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too.";
2648 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))),
3143 const Matcher<int*> m = Pointee(Ge(0));
3153 const Matcher<const double*> m = Pointee(Ge(0));
3163 const Matcher<int* const &> m = Pointee(Ge(0));
3173 const Matcher<double* &> m = Pointee(Ge(0));
3402 Matcher<AStruct> m = Field(&AStruct::x, Ge(0));
3414 Matcher<AStruct> m = Field(&AStruct::y, Ge(0.0));
3449 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0));
3462 Matcher<const DerivedStruct&> m = Field(&AStruct::x, Ge(0));
3475 Matcher<signed char>(Ge(0)));
3485 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0));
3493 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0));
3507 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0));
3517 Matcher<AStruct*> m = Field(&AStruct::x, Ge(0));
3527 Matcher<AStruct* const&> m = Field(&AStruct::x, Ge(0));
3546 Matcher<DerivedStruct*> m = Field(&AStruct::x, Ge(0));
3556 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0));
3564 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0));
3614 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3668 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0));
3683 Matcher<signed char>(Ge(0)));
3693 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3702 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3716 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3762 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0));
3774 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3783 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3825 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85));
3886 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85)));
3933 Matcher<int> matcher_int = ResultOf(PolymorphicFunctor(), Ge(5));
3938 Matcher<const char*> matcher_string = ResultOf(PolymorphicFunctor(), Ge(5));
4011 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3));
4023 const Matcher<int> m = AllOf(Ge(2), Le(3));
4033 // ctor can be used as arguments to matchers like Eq(), Ge(), and etc
4066 const Matcher<NotCopyable&> m = Ge(ByRef(value2));
4786 {Eq(1), Ne(-2), Ge(3), Le(4), Eq(5)}));
4788 {Eq(1), Ne(-2), Ge(3), Le(4), Eq(6)})));