Home | History | Annotate | Download | only in gmock

Lines Matching defs:EXPECT_CALL

34 // This file implements the ON_CALL() and EXPECT_CALL() macros.
45 // A user can use the EXPECT_CALL() macro to specify an expectation on
48 // EXPECT_CALL(mock_object, Method(argument-matchers))
187 // whenever an EXPECT_CALL() or ON_CALL() is executed on this mock
230 // ON_CALL/EXPECT_CALL has been invoked on it.
452 // ON_CALL or EXPECT_CALL. In case mock_obj is leaked, this
467 // clause of EXPECT_CALL() for setting the (partial) order of
470 // Expectation e1 = EXPECT_CALL(...)...;
471 // EXPECT_CALL(...).After(e1)...;
495 // Expectation e = EXPECT_CALL(...);
551 // EXPECT_CALL() for setting the (partial) order of expectations. The
555 // es += EXPECT_CALL(...)...;
556 // es += EXPECT_CALL(...)...;
557 // EXPECT_CALL(...).After(es)...;
575 // ExpectationSet es = EXPECT_CALL(...);
600 // expectation_set += EXPECT_CALL(...);
636 // An object of this type causes all EXPECT_CALL() statements
648 // EXPECT_CALL(a, Bar())...;
649 // EXPECT_CALL(a, Baz())...;
651 // EXPECT_CALL(b, Xyz())...;
692 // source_text is the EXPECT_CALL(...) source that created this Expectation.
740 // Asserts that the EXPECT_CALL() statement has the given property.
745 // Expects that the EXPECT_CALL() statement has the given property.
764 // EXPECT_CALL() statement, and only when g_gmock_mutex is held by
845 // an EXPECT_CALL() statement finishes.
848 const string source_text_; // The EXPECT_CALL(...) source text.
911 "more than once in an EXPECT_CALL().");
915 "clause in an EXPECT_CALL().");
1012 "more than once in an EXPECT_CALL().");
1047 // EXPECT_CALL() macro.
1080 // The following methods will be called only after the EXPECT_CALL()
1220 // All the fields below won't change once the EXPECT_CALL()
1230 // A MockSpec object is used by ON_CALL() or EXPECT_CALL() for
1270 const string source_text(string("EXPECT_CALL(") + obj + ", " + call + ")");
1822 // EXPECT_CALL(foo, Bar());
1824 // EXPECT_CALL(Const(foo), Bar());
1845 #define EXPECT_CALL(obj, call) GMOCK_EXPECT_CALL_IMPL_(obj, call)