Lines Matching refs:NiceMock
57 using testing::NiceMock;
114 NiceMock<MockFoo> nice_foo;
125 NiceMock<MockFoo>* const nice_foo = new NiceMock<MockFoo>;
138 NiceMock<MockFoo> nice_foo;
158 NiceMock<MockFoo> nice_foo;
166 NiceMock<MockFoo> nice_foo;
172 // Tests that NiceMock works with a mock class that has a non-default
175 NiceMock<MockBar> nice_bar("hi");
182 // Tests that NiceMock works with a mock class that has a 10-ary
185 NiceMock<MockBar> nice_bar('a', 'b', "c", "d", 'e', 'f',
194 // Tests that NiceMock<Mock> compiles where Mock is a user-defined
197 // NiceMock to be looked up in the wrong context, and this test
203 NiceMock< ::Mock> nice;