Home
last modified time | relevance | path

Searched refs:AllOf (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-arithmetic_test.cc439 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 Dgmock_link_test.h132 using testing::AllOf;
671 Matcher<int> m = AllOf(_, Eq(1)); in TEST()
H A Dgmock-matchers-comparisons_test.cc2322 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 Dgmock-internal-utils_test.cc471 AllOf(Ge(expected_skip_count), Le(expected_skip_count + 10))); in TEST()
H A Dgmock-matchers-containers_test.cc112 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 Dmatchers.md241 | `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 Dassertions.md93 using ::testing::AllOf;
102 ASSERT_THAT(value3, AllOf(Gt(5), Lt(10)));
/freebsd/contrib/googletest/docs/
H A Dgmock_cook_book.md882 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 Dgmock-matchers.h5116 internal::AllOfMatcher<typename std::decay<const Args&>::type...> AllOf(