Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc965 int IntFunction(int input) { return input == 42 ? 80 : 90; } in IntFunction() function
968 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85)); in TEST_P()
972 matcher = ResultOf(&IntFunction, GreaterThan(85)); in TEST_P()
979 Matcher<int> matcher = ResultOf("magic int conversion", &IntFunction, Ge(85)); in TEST_P()
983 matcher = ResultOf("magic int conversion", &IntFunction, GreaterThan(85)); in TEST_P()
992 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80)); in TEST()
1040 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85))); in TEST()