Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-arithmetic_test.cc624 m = AllOf(Le(2), Ge(1)); in TEST()
630 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
636 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
643 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
652 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST()
653 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST()
654 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST()
655 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST()
656 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST()
657 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.cc2378 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
2385 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
2392 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3)); in TEST()
2399 const Matcher<int> m = AllOf(DivisibleBy(2), DivisibleBy(3)); in TEST()
2406 const Matcher<int> m = AllOf(Ge(2), Le(3)); in TEST()
2438 Matcher<int> all_of_matcher = AllOf(matcher, matcher); 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-misc_test.cc757 EXPECT_THAT(opt, Optional(AllOf(eq1, Not(eq2)))); in TYPED_TEST()
766 EXPECT_THAT(opt, Optional(AllOf(eq1, Not(eq2)))); in TYPED_TEST()
H A Dgmock-matchers-containers_test.cc113 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST()
131 EXPECT_NONFATAL_FAILURE(EXPECT_THAT(n, AllOf(Le(7), Ge(5))), in TEST()
145 EXPECT_THAT(n, AllOf(Le(7), Ref(n))); in TEST()
/freebsd/contrib/googletest/docs/reference/
H A Dmatchers.md244 | `AllOf(m1, m2, ..., mn)` | `argument` matches all of the matchers `m1` to `mn`. |
245 … 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.h5383 internal::AllOfMatcher<typename std::decay<const Args&>::type...> AllOf(