Home | History | Annotate | Download | only in gmock

Lines Matching defs:ON_CALL

41 //   ON_CALL(mock_object.Method(...))
4581 // This file implements the ON_CALL() and EXPECT_CALL() macros.
4583 // A user can use the ON_CALL() macro to specify the default action of
4586 // ON_CALL(mock_object, Method(argument-matchers))
7737 // Clears the ON_CALL()s set on this mock function.
7786 // whenever an EXPECT_CALL() or ON_CALL() is executed on this mock
7829 // ON_CALL/EXPECT_CALL has been invoked on it.
7846 // The arguments are the location of the ON_CALL() statement.
7855 // Gives each clause in the ON_CALL() statement a name.
7864 // Asserts that the ON_CALL() statement has a certain property.
7869 // Expects that the ON_CALL() statement has a certain property.
7877 // The last clause in the ON_CALL() statement as seen so far.
7882 // This template class implements an ON_CALL spec.
7890 // the parenthesis of an ON_CALL() statement.
7907 "more than once in an ON_CALL().");
7918 "exactly once in an ON_CALL().");
7922 "DoDefault() cannot be used in ON_CALL().");
7936 "once in an ON_CALL().");
7943 // ON_CALL(mock_object, Method(matchers))
8033 // Clears all ON_CALL()s set on the given mock object.
8043 // ON_CALL or EXPECT_CALL. In case mock_obj is leaked, this
8818 // A MockSpec object is used by ON_CALL() or EXPECT_CALL() for
8850 string("ON_CALL(") + obj + ", " + call + ") invoked");
9008 // Returns the ON_CALL spec that matches this mock function with the
9009 // given arguments; returns NULL if no matching ON_CALL is found.
9070 // clears the ON_CALL()s set on this mock function.
9347 #define ON_CALL(obj, call) GMOCK_ON_CALL_IMPL_(obj, call)