Lines Matching refs:Mock

32 // Google Mock - a framework for writing C++ mock classes.
54 // Protects the mock object registry (in class Mock), all function
285 Mock::Register(mock_obj, this);
345 // We must get Google Mock's reaction on uninteresting calls
350 Mock::GetReactionOnUninterestingCalls(MockObject());
514 // Class Mock.
539 // Mock::AllowLeak(), ON_CALL(), or EXPECT_CALL() is called on it. It
601 // Maps a mock object to the reaction Google Mock should have when an
605 // Sets the reaction Google Mock should have when an uninteresting
616 // Tells Google Mock to allow uninteresting calls on the given mock
618 void Mock::AllowUninterestingCalls(const void* mock_obj)
623 // Tells Google Mock to warn the user about uninteresting calls on the
625 void Mock::WarnUninterestingCalls(const void* mock_obj)
630 // Tells Google Mock to fail uninteresting calls on the given mock
632 void Mock::FailUninterestingCalls(const void* mock_obj)
637 // Tells Google Mock the given mock object is being destroyed and its
639 void Mock::UnregisterCallReaction(const void* mock_obj)
645 // Returns the reaction Google Mock will have on uninteresting calls
647 internal::CallReaction Mock::GetReactionOnUninterestingCalls(
655 // Tells Google Mock to ignore mock_obj when checking for leaked mock
657 void Mock::AllowLeak(const void* mock_obj)
666 bool Mock::VerifyAndClearExpectations(void* mock_obj)
675 bool Mock::VerifyAndClear(void* mock_obj)
685 bool Mock::VerifyAndClearExpectationsLocked(void* mock_obj)
711 void Mock::Register(const void* mock_obj,
718 // Tells Google Mock where in the source code mock_obj is used in an
721 void Mock::RegisterUseByOnCallOrExpectCall(const void* mock_obj,
745 void Mock::UnregisterLocked(internal::UntypedFunctionMockerBase* mocker)
763 void Mock::ClearDefaultActionsLocked(void* mock_obj)