• Home
  • Raw
  • Download

Lines Matching refs:matchers

61 `EXPECT_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))`
65 that match the given matchers *`matchers...`*. `EXPECT_CALL` must precede any
68 The parameter *`matchers...`* is a comma-separated list of
69 [matchers](../gmock_for_dummies.md#matchers-what-arguments-do-we-expect) that
72 matchers. If `(`*`matchers...`*`)` is omitted, the expectation behaves as if
73 each argument's matcher were a [wildcard matcher (`_`)](matchers.md#wildcard).
74 See the [Matchers Reference](matchers.md) for a list of all built-in matchers.
80 EXPECT_CALL(mock_object, method_name(matchers...))
116 GoogleTest provides some built-in matchers for 2-tuples, including the `Lt()`
117 matcher above. See [Multi-argument Matchers](matchers.md#MultiArgMatchers).
321 `ON_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))`
324 *`mock_object`* is called with arguments that match the given matchers
325 *`matchers...`*. Requires a modifier clause to specify the method's behavior.
328 The parameter *`matchers...`* is a comma-separated list of
329 [matchers](../gmock_for_dummies.md#matchers-what-arguments-do-we-expect) that
332 all of the matchers. If `(`*`matchers...`*`)` is omitted, the behavior is as if
333 each argument's matcher were a [wildcard matcher (`_`)](matchers.md#wildcard).
334 See the [Matchers Reference](matchers.md) for a list of all built-in matchers.
340 ON_CALL(mock_object, method_name(matchers...))
373 GoogleTest provides some built-in matchers for 2-tuples, including the `Lt()`
374 matcher above. See [Multi-argument Matchers](matchers.md#MultiArgMatchers).