Home | History | Annotate | Download | only in test

Lines Matching full:that

5 // modification, are permitted provided that the following conditions are
103 MOCK_METHOD2(That, string(int, bool));
113 // Tests that a raw mock generates warnings for uninteresting calls.
129 // Tests that a raw mock generates warnings for uninteresting calls
130 // that delete the mock object.
148 // Tests that a raw mock generates informational logs for
163 // Tests that a nice mock generates no warning for uninteresting calls.
173 // Tests that a nice mock generates no warning for uninteresting calls
174 // that delete the mock object.
186 // Tests that a nice mock generates informational logs for
203 // Tests that a nice mock allows expected calls.
211 // Tests that an unexpected call on a nice mock fails.
219 // Tests that NiceMock works with a mock class that has a non-default
226 nice_bar.That(5, true);
229 // Tests that NiceMock works with a mock class that has a 10-ary
237 nice_bar.That(5, true);
241 // Tests that NiceMock<Mock> compiles where Mock is a user-defined
243 // MSVC 8.0 bug that caused the symbol Mock used in the definition of
245 // ensures that our fix works.
258 // Tests that a naggy mock generates warnings for uninteresting calls.
274 // Tests that a naggy mock generates a warning for an uninteresting call
275 // that deletes the mock object.
295 // Tests that a naggy mock allows expected calls.
303 // Tests that an unexpected call on a naggy mock fails.
312 // Tests that NaggyMock works with a mock class that has a non-default
319 naggy_bar.That(5, true);
322 // Tests that NaggyMock works with a mock class that has a 10-ary
330 naggy_bar.That(5, true);
334 // Tests that NaggyMock<Mock> compiles where Mock is a user-defined
336 // MSVC 8.0 bug that caused the symbol Mock used in the definition of
338 // ensures that our fix works.
349 // Tests that a strict mock allows expected calls.
357 // Tests that an unexpected call on a strict mock fails.
366 // Tests that an uninteresting call on a strict mock fails.
374 // Tests that an uninteresting call on a strict mock fails, even if
386 // Tests that StrictMock works with a mock class that has a
392 EXPECT_NONFATAL_FAILURE(strict_bar.That(5, true),
396 // Tests that StrictMock works with a mock class that has a 10-ary
403 EXPECT_NONFATAL_FAILURE(strict_bar.That(5, true),
408 // Tests that StrictMock<Mock> compiles where Mock is a user-defined
410 // MSVC 8.0 bug that caused the symbol Mock used in the definition of
412 // ensures that our fix works.