Lines Matching defs:test_mock
2462 ReferenceHoldingMock test_mock;
2464 // EXPECT_CALL stores a reference to a inside test_mock.
2465 EXPECT_CALL(test_mock, AcceptReference(_))
2469 // only reference to it is stored by test_mock.
2472 // When test_mock goes out of scope, it destroys the last remaining reference
2482 ReferenceHoldingMock test_mock;
2484 // ON_CALL stores a reference to a inside test_mock.
2485 ON_CALL(test_mock, AcceptReference(_)).WillByDefault(SetArgPointee<0>(a));
2488 // only reference to it is stored by test_mock.
2491 // When test_mock goes out of scope, it destroys the last remaining reference