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))
183 // whenever an EXPECT_CALL() or ON_CALL() is executed on this mock
226 // ON_CALL/EXPECT_CALL has been invoked on it.
444 // ON_CALL or EXPECT_CALL. In case mock_obj is leaked, this
459 // clause of EXPECT_CALL() for setting the (partial) order of
462 // Expectation e1 = EXPECT_CALL(...)...;
463 // EXPECT_CALL(...).After(e1)...;
487 // Expectation e = EXPECT_CALL(...);
543 // EXPECT_CALL() for setting the (partial) order of expectations. The
547 // es += EXPECT_CALL(...)...;
548 // es += EXPECT_CALL(...)...;
549 // EXPECT_CALL(...).After(es)...;
567 // ExpectationSet es = EXPECT_CALL(...);
592 // expectation_set += EXPECT_CALL(...);
628 // An object of this type causes all EXPECT_CALL() statements
640 // EXPECT_CALL(a, Bar())...;
641 // EXPECT_CALL(a, Baz())...;
643 // EXPECT_CALL(b, Xyz())...;
684 // source_text is the EXPECT_CALL(...) source that created this Expectation.
732 // Asserts that the EXPECT_CALL() statement has the given property.
737 // Expects that the EXPECT_CALL() statement has the given property.
756 // EXPECT_CALL() statement, and only when g_gmock_mutex is held by
837 // an EXPECT_CALL() statement finishes.
840 const string source_text_; // The EXPECT_CALL(...) source text.
903 "more than once in an EXPECT_CALL().");
907 "clause in an EXPECT_CALL().");
1004 "more than once in an EXPECT_CALL().");
1039 // EXPECT_CALL() macro.
1072 // The following methods will be called only after the EXPECT_CALL()
1212 // All the fields below won't change once the EXPECT_CALL()
1222 // A MockSpec object is used by ON_CALL() or EXPECT_CALL() for
1262 const string source_text(string("EXPECT_CALL(") + obj + ", " + call + ")");
1749 // EXPECT_CALL(foo, Bar());
1751 // EXPECT_CALL(Const(foo), Bar());
1772 #define EXPECT_CALL(obj, call) GMOCK_EXPECT_CALL_IMPL_(obj, call)