Lines Matching refs:StrictMock
21 using ::testing::StrictMock;
247 StrictMock<NoRef> no_ref_;
248 StrictMock<HasRef> has_ref_;
251 StrictMock<NoRef> static_func_mock_;
254 static StrictMock<NoRef>* static_func_mock_ptr;
260 StrictMock<NoRef>* BindTest::static_func_mock_ptr;
583 // StrictMock<T> is a derived class of T. So, we use StrictMock<HasRef> and
584 // StrictMock<NoRef> to test that SupportsAddRefAndRelease works over
586 EXPECT_TRUE(internal::SupportsAddRefAndRelease<StrictMock<HasRef> >::value);
587 EXPECT_FALSE(internal::SupportsAddRefAndRelease<StrictMock<NoRef> >::value);
688 const scoped_refptr<StrictMock<HasRef> > refptr(&has_ref_);