Searched refs:AllOf (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-matchers-arithmetic_test.cc | 439 m = AllOf(Le(2), Ge(1)); in TEST() 445 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST() 451 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST() 458 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST() 467 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST() 468 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST() 469 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST() 470 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST() 471 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST() 472 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7))); in TEST() [all …]
|
H A D | gmock_link_test.h | 132 using testing::AllOf; 671 Matcher<int> m = AllOf(_, Eq(1)); in TEST()
|
H A D | gmock-matchers-comparisons_test.cc | 2322 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST() 2329 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST() 2336 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3)); in TEST() 2343 const Matcher<int> m = AllOf(DivisibleBy(2), DivisibleBy(3)); in TEST() 2348 const Matcher<int> m = AllOf(Ge(2), Le(3)); in TEST()
|
H A D | gmock-internal-utils_test.cc | 471 AllOf(Ge(expected_skip_count), Le(expected_skip_count + 10))); in TEST()
|
H A D | gmock-matchers-containers_test.cc | 112 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST() 130 EXPECT_NONFATAL_FAILURE(EXPECT_THAT(n, AllOf(Le(7), Ge(5))), in TEST() 144 EXPECT_THAT(n, AllOf(Le(7), Ref(n))); in TEST()
|
/freebsd/contrib/googletest/docs/reference/ |
H A D | matchers.md | 241 | `AllOf(m1, m2, ..., mn)` | `argument` matches all of the matchers `m1` to `mn`. | 242 … end)`, `AllOfArray(array)`, or `AllOfArray(array, count)` | The same as `AllOf()` except that the…
|
H A D | assertions.md | 93 using ::testing::AllOf; 102 ASSERT_THAT(value3, AllOf(Gt(5), Lt(10)));
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_cook_book.md | 882 You can build complex matchers from existing ones using `AllOf()`, 886 using ::testing::AllOf; 893 EXPECT_CALL(foo, DoThis(AllOf(Gt(5), 1081 using ::testing::AllOf; 1086 .With(AllOf(Args<0, 1>(Lt()), Args<1, 2>(Lt()))); 1132 using ::testing::AllOf; 1138 Matches(AllOf(Ge(0), Le(100), Ne(50))) 1245 that there are [`AllOf()` and `AllOfArray()`](#CombiningMatchers). 1252 using ::testing::AllOf; 1258 return AllOf(Field("some_field", &Foo::some_field, foo.some_field), [all …]
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 5116 internal::AllOfMatcher<typename std::decay<const Args&>::type...> AllOf(
|