Lines Matching full:what
3 ### When I call a method on my mock object, the method for the real object is invoked instead. What…
14 many arguments are passed to the variadic method, and what the arguments' types
82 ### I can't figure out why gMock thinks my expectations are not satisfied. What should I do?
137 ### I get a heapcheck failure when using a mock object, but using a real object is fine. What can b…
325 well, a pain to use. So, what's wrong in the latter case?
331 Mocks are great for what some call "interaction-based" testing: instead of
348 What it means is that you have a mock function, you haven't set any expectations
353 What if you actually meant to disallow this function to be called, but forgot to
358 uninteresting calls, you should investigate what's going on. To make your life
370 `MakePolymorphicAction()` is easiest. Sometimes you want precise control on what
375 …ee() in WillOnce(), but gcc complains about "conflicting return type specified". What does it mean?
377 You got this error as gMock has no idea what value it should return when the
378 mock method is called. `SetArgPointee()` says what the side effect is, but
379 doesn't say what the return value should be. You need `DoAll()` to chain a
386 ### I have a huge mock class, and Microsoft Visual C++ runs out of memory when compiling it. What c…