Lines Matching refs:arguments

16 Defines a mock method *`method_name`* with arguments `(`*`args...`*`)` and
31 Note that commas in arguments prevent `MOCK_METHOD` from parsing the arguments
38 // The following 2 lines will not compile due to commas in the arguments:
42 // One solution - wrap arguments that contain commas in parentheses:
63 method *`method_name`* of the object *`mock_object`* is called with arguments
68 [matchers](../gmock_for_dummies.md#matchers-what-arguments-do-we-expect) that
70 apply only to calls of *`method_name`* whose arguments match all of the
95 Restricts the expectation to apply only to mock function calls whose arguments
98 GoogleTest passes all of the arguments as one tuple into the matcher. The
101 function arguments.
104 `my_mock.SetPosition()` is called with any two arguments, the first argument
325 *`mock_object`* is called with arguments that match the given matchers
330 [matchers](../gmock_for_dummies.md#matchers-what-arguments-do-we-expect) that
332 specification will apply only to calls of *`method_name`* whose arguments match
352 Restricts the specification to only mock function calls whose arguments as a
355 GoogleTest passes all of the arguments as one tuple into the matcher. The
358 function arguments.
361 `my_mock.SetPosition()` is called with any two arguments, the first argument
447 addition, `NiceMock<T>` can be constructed with any arguments that a constructor
478 In addition, `NaggyMock<T>` can be constructed with any arguments that a
505 In addition, `StrictMock<T>` can be constructed with any arguments that a