• Home
  • Raw
  • Download

Lines Matching refs:AllOf

83 using testing::AllOf;
2059 m = AllOf(Le(2), Ge(1)); in TEST()
2065 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2071 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2078 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2087 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST()
2088 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST()
2089 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST()
2090 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST()
2091 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST()
2092 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7))); in TEST()
2093 AllOfMatches(8, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), in TEST()
2095 AllOfMatches(9, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), in TEST()
2097 AllOfMatches(10, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
2106 ::testing::AllOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11); in TEST()
2107 Matcher<int> m = AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
2111 AllOfMatches(50, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
2126 m = AllOf(Le(2), Ge(1)); in TEST()
2129 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2136 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2144 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2156 m = AllOf(Le(2), Ge(1)); in TEST()
2161 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2168 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2176 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2191 Matcher<const int&> m = AllOf(greater_than_5, less_than_10); in TEST()
2192 Matcher<int&> m2 = AllOf(greater_than_5, less_than_10); in TEST()
2193 Matcher<int&> m3 = AllOf(greater_than_5, m2); in TEST()
2196 Matcher<const int&> m4 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
2197 Matcher<int&> m5 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
2206 m = AllOf(GreaterThan(10), Lt(30)); in TEST()
2210 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2216 m = AllOf(GreaterThan(10), Lt(30), GreaterThan(20)); in TEST()
2221 m = AllOf(GreaterThan(10), GreaterThan(20), GreaterThan(30)); in TEST()
2228 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2234 m = AllOf(GreaterThan(10), Lt(30)); in TEST()
2239 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2525 EXPECT_TRUE(Matches(AllOf(Ref(n), Eq(0)))(n)); in TEST()
2625 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST()
2648 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))), in TEST()
2661 EXPECT_THAT(n, AllOf(Le(7), Ref(n))); in TEST()
4001 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
4008 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
4015 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3)); in TEST()
4022 const Matcher<int> m = AllOf(DivisibleBy(2), DivisibleBy(3)); in TEST()
4027 const Matcher<int> m = AllOf(Ge(2), Le(3)); in TEST()