Home | History | Annotate | Download | only in test

Lines Matching refs:Ge

86 using testing::Ge;
756 // Tests that Ge(v) matches anything >= v.
758 Matcher<int> m1 = Ge(0);
764 // Tests that Ge(v) describes itself properly.
766 Matcher<int> m = Ge(5);
1143 EXPECT_THAT(p, Key(Ge(20)));
1248 EXPECT_THAT(p, Pair(Ge(20), HasSubstr("o")));
1770 // Tests that Ge() matches a 2-tuple where the first field >= the
1773 Matcher<const Tuple2&> m = Ge();
1779 // Tests that Ge() describes itself properly.
1781 Matcher<const Tuple2&> m = Ge();
1883 m = AllOf(Le(2), Ge(1));
1902 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
1928 m = AllOf(Le(2), Ge(1));
1946 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
1958 m = AllOf(Le(2), Ge(1));
1978 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2059 m = AnyOf(Le(1), Ge(3));
2101 m = AnyOf(Le(1), Ge(3));
2129 m = AnyOf(Le(1), Ge(3));
2278 EXPECT_TRUE(Matches(Ge(0))(1));
2323 EXPECT_FALSE(ExplainMatchResult(Ge(42), 1.5, &listener2));
2384 ASSERT_THAT(5, Ge(2)) << "This should succeed.";
2386 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too.";
2409 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))),
2715 const Matcher<int*> m = Pointee(Ge(0));
2725 const Matcher<const double*> m = Pointee(Ge(0));
2735 const Matcher<int* const &> m = Pointee(Ge(0));
2745 const Matcher<double* &> m = Pointee(Ge(0));
2835 Matcher<AStruct> m = Field(&AStruct::x, Ge(0));
2847 Matcher<AStruct> m = Field(&AStruct::y, Ge(0.0));
2882 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0));
2895 Matcher<const DerivedStruct&> m = Field(&AStruct::x, Ge(0));
2908 Matcher<signed char>(Ge(0)));
2918 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0));
2926 Matcher<const AStruct&> m = Field(&AStruct::x, Ge(0));
2940 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0));
2950 Matcher<AStruct*> m = Field(&AStruct::x, Ge(0));
2960 Matcher<AStruct* const&> m = Field(&AStruct::x, Ge(0));
2979 Matcher<DerivedStruct*> m = Field(&AStruct::x, Ge(0));
2989 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0));
2997 Matcher<const AStruct*> m = Field(&AStruct::x, Ge(0));
3045 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3099 Matcher<const DerivedClass&> m = Property(&AClass::n, Ge(0));
3114 Matcher<signed char>(Ge(0)));
3124 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3133 Matcher<const AClass&> m = Property(&AClass::n, Ge(0));
3147 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3193 Matcher<const DerivedClass*> m = Property(&AClass::n, Ge(0));
3205 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3214 Matcher<const AClass*> m = Property(&AClass::n, Ge(0));
3256 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85));
3317 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85)));
3364 Matcher<int> matcher_int = ResultOf(PolymorphicFunctor(), Ge(5));
3369 Matcher<const char*> matcher_string = ResultOf(PolymorphicFunctor(), Ge(5));
3442 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3));
3454 const Matcher<int> m = AllOf(Ge(2), Le(3));
3464 // ctor can be used as arguments to matchers like Eq(), Ge(), and etc
3497 const Matcher<NotCopyable&> m = Ge(ByRef(value2));