Lines Matching refs:method_name
12 `MOCK_METHOD(`*`return_type`*`,`*`method_name`*`, (`*`args...`*`));` \
13 `MOCK_METHOD(`*`return_type`*`,`*`method_name`*`, (`*`args...`*`),
16 Defines a mock method *`method_name`* with arguments `(`*`args...`*`)` and
60 `EXPECT_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))`
63 method *`method_name`* of the object *`mock_object`* is called with arguments
69 correspond to each argument of the method *`method_name`*. The expectation will
70 apply only to calls of *`method_name`* whose arguments match all of the
79 EXPECT_CALL(mock_object, method_name(matchers...))
322 `ON_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))`
324 Defines what happens when the method *`method_name`* of the object
331 correspond to each argument of the method *`method_name`*. The `ON_CALL`
332 specification will apply only to calls of *`method_name`* whose arguments match
341 ON_CALL(mock_object, method_name(matchers...))