Home | History | Annotate | Download | only in gmock

Lines Matching full:on_call

34 // This file implements the ON_CALL() and EXPECT_CALL() macros.
36 // A user can use the ON_CALL() macro to specify the default action of
39 // ON_CALL(mock_object, Method(argument-matchers))
133 // Clears the ON_CALL()s set on this mock function.
182 // whenever an EXPECT_CALL() or ON_CALL() is executed on this mock
225 // ON_CALL/EXPECT_CALL has been invoked on it.
242 // The arguments are the location of the ON_CALL() statement.
251 // Gives each clause in the ON_CALL() statement a name.
260 // Asserts that the ON_CALL() statement has a certain property.
265 // Expects that the ON_CALL() statement has a certain property.
273 // The last clause in the ON_CALL() statement as seen so far.
278 // This template class implements an ON_CALL spec.
286 // the parenthesis of an ON_CALL() statement.
303 "more than once in an ON_CALL().");
314 "exactly once in an ON_CALL().");
318 "DoDefault() cannot be used in ON_CALL().");
332 "once in an ON_CALL().");
339 // ON_CALL(mock_object, Method(matchers))
429 // Clears all ON_CALL()s set on the given mock object.
439 // ON_CALL or EXPECT_CALL. In case mock_obj is leaked, this
1214 // A MockSpec object is used by ON_CALL() or EXPECT_CALL() for
1246 string("ON_CALL(") + obj + ", " + call + ") invoked");
1404 // Returns the ON_CALL spec that matches this mock function with the
1405 // given arguments; returns NULL if no matching ON_CALL is found.
1466 // clears the ON_CALL()s set on this mock function.
1743 #define ON_CALL(obj, call) GMOCK_ON_CALL_IMPL_(obj, call)