Lines Matching refs:NiceMock
58 using testing::NiceMock;
165 NiceMock<MockFoo> nice_foo;
176 NiceMock<MockFoo>* const nice_foo = new NiceMock<MockFoo>;
189 NiceMock<MockFoo> nice_foo;
205 NiceMock<MockFoo> nice_foo;
213 NiceMock<MockFoo> nice_foo;
219 // Tests that NiceMock works with a mock class that has a non-default
222 NiceMock<MockBar> nice_bar("hi");
229 // Tests that NiceMock works with a mock class that has a 10-ary
232 NiceMock<MockBar> nice_bar('a', 'b', "c", "d", 'e', 'f',
241 // Tests that NiceMock<Mock> compiles where Mock is a user-defined
244 // NiceMock to be looked up in the wrong context, and this test
250 NiceMock< ::Mock> nice;