Lines Matching refs: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))
137 // Clears the ON_CALL()s set on this mock function.
187 // whenever an EXPECT_CALL() or ON_CALL() is executed on this mock
230 // ON_CALL/EXPECT_CALL has been invoked on it.
247 // The arguments are the location of the ON_CALL() statement.
256 // Gives each clause in the ON_CALL() statement a name.
265 // Asserts that the ON_CALL() statement has a certain property.
270 // Expects that the ON_CALL() statement has a certain property.
278 // The last clause in the ON_CALL() statement as seen so far.
283 // This template class implements an ON_CALL spec.
291 // the parenthesis of an ON_CALL() statement.
308 "more than once in an ON_CALL().");
319 "exactly once in an ON_CALL().");
323 "DoDefault() cannot be used in ON_CALL().");
337 "once in an ON_CALL().");
344 // ON_CALL(mock_object, Method(matchers))
441 // Clears all ON_CALL()s set on the given mock object.
452 // ON_CALL or EXPECT_CALL. In case mock_obj is leaked, this
1230 // A MockSpec object is used by ON_CALL() or EXPECT_CALL() for
1262 string("ON_CALL(") + obj + ", " + call + ") invoked");
1475 // Returns the ON_CALL spec that matches this mock function with the
1476 // given arguments; returns NULL if no matching ON_CALL is found.
1546 // clears the ON_CALL()s set on this mock function.
1841 #define ON_CALL(obj, call) GMOCK_ON_CALL_IMPL_(obj, call)