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.cc964 int IntFunction(int input) { return input == 42 ? 80 : 90; } in IntFunction() function
967 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85)); in TEST_P()
971 matcher = ResultOf(&IntFunction, GreaterThan(85)); in TEST_P()
978 Matcher<int> matcher = ResultOf("magic int conversion", &IntFunction, Ge(85)); in TEST_P()
982 matcher = ResultOf("magic int conversion", &IntFunction, GreaterThan(85)); in TEST_P()
991 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80)); in TEST()
1039 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85))); in TEST()