Searched refs:AtMost (Results 1 – 6 of 6) sorted by relevance
44 using testing::AtMost;82 const Cardinality c = AtMost(5); in TEST()191 AtMost(-1); in TEST()196 const Cardinality c = AtMost(0); in TEST()210 const Cardinality c = AtMost(2); in TEST()221 AtMost(1).DescribeTo(&ss1); in TEST()231 AtMost(3).DescribeTo(&ss3); in TEST()237 const Cardinality c = AtMost(2); in TEST()
79 .Times(AtMost(3)); in TestConcurrentMockObjects()
68 using testing::AtMost;586 .Times(AtMost(1)); in TEST()600 .Times(AtMost(3)) in TEST()623 .Times(AtMost(1)) in TEST()
137 GTEST_API_ Cardinality AtMost(int n);
142 GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); } in AtMost() function
135 | `AtMost(n)` | The function call is expected at most *n* times. |