Lines Matching refs:Ge

95 using testing::Ge;
873 // Tests that Ge(v) matches anything >= v.
875 Matcher<int> m1 = Ge(0);
881 // Tests that Ge(v) describes itself properly.
883 Matcher<int> m = Ge(5);
1260 EXPECT_THAT(p, Key(Ge(20)));
1365 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o")));
1887 // Tests that Ge() matches a 2-tuple where the first field >= the
1890 Matcher<const Tuple2&> m = Ge();
1896 // Tests that Ge() describes itself properly.
1898 Matcher<const Tuple2&> m = Ge();
2000 m = AllOf(Le(2), Ge(1));
2019 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2067 m = AllOf(Le(2), Ge(1));
2085 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2097 m = AllOf(Le(2), Ge(1));
2117 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2198 m = AnyOf(Le(1), Ge(3));
2258 m = AnyOf(Le(1), Ge(3));
2286 m = AnyOf(Le(1), Ge(3));
2458 EXPECT_TRUE(Matches(Ge(0))(1));
2503 EXPECT_FALSE(ExplainMatchResult(Ge(42), 1.5, &listener2));
2564 ASSERT_THAT(5, Ge(2)) << "This should succeed.";
2566 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too.";
2589 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))),
3069 const Matcher<int*> m = Pointee(Ge(0));
3079 const Matcher<const double*> m = Pointee(Ge(0));
3089 const Matcher<int* const &> m = Pointee(Ge(0));
3099 const Matcher<double* &> m = Pointee(Ge(0));
3221 Matcher<AStruct> m = Field(&AStruct::x, Ge(0));
3233 Matcher<AStruct> m = Field(&AStruct::y, Ge(0.0));
3268 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0));
3281 Matcher<const DerivedStruct&> m = Field(&AStruct::x, Ge(0));
3294 Matcher<signed char>(Ge(0)));
3304 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0));
3312 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0));
3326 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0));
3336 Matcher<AStruct*> m = Field(&AStruct::x, Ge(0));
3346 Matcher<AStruct* const&> m = Field(&AStruct::x, Ge(0));
3365 Matcher<DerivedStruct*> m = Field(&AStruct::x, Ge(0));
3375 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0));
3383 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0));
3431 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3485 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0));
3500 Matcher<signed char>(Ge(0)));
3510 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3519 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3533 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3579 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0));
3591 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3600 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3642 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85));
3703 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85)));
3750 Matcher<int> matcher_int = ResultOf(PolymorphicFunctor(), Ge(5));
3755 Matcher<const char*> matcher_string = ResultOf(PolymorphicFunctor(), Ge(5));
3828 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3));
3840 const Matcher<int> m = AllOf(Ge(2), Le(3));
3850 // ctor can be used as arguments to matchers like Eq(), Ge(), and etc
3883 const Matcher<NotCopyable&> m = Ge(ByRef(value2));
4513 { Eq(1), Ne(-2), Ge(3), Le(4), Eq(5) }));
4515 { Eq(1), Ne(-2), Ge(3), Le(4), Eq(6) })));