Home
last modified time | relevance | path

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

/third_party/googletest/googlemock/test/
Dgmock-matchers-containers_test.cc954 int IntFunction(int input) { return input == 42 ? 80 : 90; } in IntFunction() function
957 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85)); in TEST_P()
961 matcher = ResultOf(&IntFunction, GreaterThan(85)); in TEST_P()
968 Matcher<int> matcher = ResultOf("magic int conversion", &IntFunction, Ge(85)); in TEST_P()
972 matcher = ResultOf("magic int conversion", &IntFunction, GreaterThan(85)); in TEST_P()
981 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80)); in TEST()
1029 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85))); in TEST()