Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-arithmetic_test.cc416 Matcher<int> greater_than_5 = Gt(5); in TEST() local
418 Matcher<const int&> m = Not(greater_than_5); in TEST()
419 Matcher<int&> m2 = Not(greater_than_5); in TEST()
546 Matcher<int> greater_than_5 = Gt(5); in TEST() local
549 Matcher<const int&> m = AllOf(greater_than_5, less_than_10); in TEST()
550 Matcher<int&> m2 = AllOf(greater_than_5, less_than_10); in TEST()
551 Matcher<int&> m3 = AllOf(greater_than_5, m2); in TEST()
554 Matcher<const int&> m4 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
555 Matcher<int&> m5 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
762 Matcher<int> greater_than_5 = Gt(5); in TEST() local
[all …]