Home | History | Annotate | Download | only in base

Lines Matching refs:StrictMock

22 using ::testing::StrictMock;
248 StrictMock<NoRef> no_ref_;
249 StrictMock<HasRef> has_ref_;
252 StrictMock<NoRef> static_func_mock_;
255 static StrictMock<NoRef>* static_func_mock_ptr;
261 StrictMock<NoRef>* BindTest::static_func_mock_ptr;
584 // StrictMock<T> is a derived class of T. So, we use StrictMock<HasRef> and
585 // StrictMock<NoRef> to test that SupportsAddRefAndRelease works over
587 EXPECT_TRUE(internal::SupportsAddRefAndRelease<StrictMock<HasRef> >::value);
588 EXPECT_FALSE(internal::SupportsAddRefAndRelease<StrictMock<NoRef> >::value);
689 const scoped_refptr<StrictMock<HasRef> > refptr(&has_ref_);