Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-matchers_test.cc4500 int IntFunction(int input) { return input == 42 ? 80 : 90; } in IntFunction() function
4503 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85)); in TEST()
4507 matcher = ResultOf(&IntFunction, GreaterThan(85)); in TEST()
4515 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80)); in TEST()
4564 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85))); in TEST()