Home | History | Annotate | Download | only in test

Lines Matching refs:Le

91 using testing::Le;
784 // Tests that Le(v) matches anything <= v.
786 Matcher<char> m1 = Le('b');
792 // Tests that Le(v) describes itself properly.
794 Matcher<int> m = Le(5);
1800 // Tests that Le() matches a 2-tuple where the first field <= the
1803 Matcher<const Tuple2&> m = Le();
1809 // Tests that Le() describes itself properly.
1811 Matcher<const Tuple2&> m = Le();
1883 m = AllOf(Le(2), Ge(1));
1928 m = AllOf(Le(2), Ge(1));
1958 m = AllOf(Le(2), Ge(1));
2059 m = AnyOf(Le(1), Ge(3));
2077 m = AnyOf(Le(0), Gt(10), 3, 5, 7);
2101 m = AnyOf(Le(1), Ge(3));
2117 m = AnyOf(Le(0), Gt(10), 3, 5, 7);
2129 m = AnyOf(Le(1), Ge(3));
2145 m = AnyOf(Le(0), Gt(10), 3, 5, 7);
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))),
2422 EXPECT_THAT(n, AllOf(Le(7), Ref(n)));
2849 m = Field(&AStruct::y, Le(0.0));
3454 const Matcher<int> m = AllOf(Ge(2), Le(3));