Home | History | Annotate | Download | only in test

Lines Matching refs:That

5 // modification, are permitted provided that the following conditions are
102 MOCK_METHOD2(That, string(int, bool));
112 // Tests that a nice mock generates no warning for uninteresting calls.
122 // Tests that a nice mock generates no warning for uninteresting calls
123 // that delete the mock object.
135 // Tests that a nice mock generates informational logs for
156 // Tests that a nice mock allows expected calls.
164 // Tests that an unexpected call on a nice mock fails.
172 // Tests that NiceMock works with a mock class that has a non-default
179 nice_bar.That(5, true);
182 // Tests that NiceMock works with a mock class that has a 10-ary
190 nice_bar.That(5, true);
194 // Tests that NiceMock<Mock> compiles where Mock is a user-defined
196 // MSVC 8.0 bug that caused the symbol Mock used in the definition of
198 // ensures that our fix works.
209 // Tests that a strict mock allows expected calls.
217 // Tests that an unexpected call on a strict mock fails.
226 // Tests that an uninteresting call on a strict mock fails.
234 // Tests that an uninteresting call on a strict mock fails, even if
246 // Tests that StrictMock works with a mock class that has a
252 EXPECT_NONFATAL_FAILURE(strict_bar.That(5, true),
256 // Tests that StrictMock works with a mock class that has a 10-ary
263 EXPECT_NONFATAL_FAILURE(strict_bar.That(5, true),
268 // Tests that StrictMock<Mock> compiles where Mock is a user-defined
270 // MSVC 8.0 bug that caused the symbol Mock used in the definition of
272 // ensures that our fix works.