• Home
  • Raw
  • Download

Lines Matching refs:AllOf

83 using testing::AllOf;
2055 m = AllOf(Le(2), Ge(1)); in TEST()
2061 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2067 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2074 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2083 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST()
2084 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST()
2085 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST()
2086 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST()
2087 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST()
2088 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7))); in TEST()
2089 AllOfMatches(8, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), in TEST()
2091 AllOfMatches(9, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), in TEST()
2093 AllOfMatches(10, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
2102 ::testing::AllOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11); in TEST()
2103 Matcher<int> m = AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
2107 AllOfMatches(50, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
2122 m = AllOf(Le(2), Ge(1)); in TEST()
2125 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2132 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2140 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2152 m = AllOf(Le(2), Ge(1)); in TEST()
2157 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2164 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2172 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2187 Matcher<const int&> m = AllOf(greater_than_5, less_than_10); in TEST()
2188 Matcher<int&> m2 = AllOf(greater_than_5, less_than_10); in TEST()
2189 Matcher<int&> m3 = AllOf(greater_than_5, m2); in TEST()
2192 Matcher<const int&> m4 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
2193 Matcher<int&> m5 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
2202 m = AllOf(GreaterThan(10), Lt(30)); in TEST()
2206 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2212 m = AllOf(GreaterThan(10), Lt(30), GreaterThan(20)); in TEST()
2217 m = AllOf(GreaterThan(10), GreaterThan(20), GreaterThan(30)); in TEST()
2224 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2230 m = AllOf(GreaterThan(10), Lt(30)); in TEST()
2235 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2521 EXPECT_TRUE(Matches(AllOf(Ref(n), Eq(0)))(n)); in TEST()
2621 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST()
2644 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))), in TEST()
2657 EXPECT_THAT(n, AllOf(Le(7), Ref(n))); in TEST()
3991 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
3998 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
4005 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3)); in TEST()
4012 const Matcher<int> m = AllOf(DivisibleBy(2), DivisibleBy(3)); in TEST()
4017 const Matcher<int> m = AllOf(Ge(2), Le(3)); in TEST()