Lines Matching +full:tightly +full:- +full:coupled

6 [high-perf dependency injection technique](gmock_cook_book.md#MockingNonVirtualMethods).
72 Note that we are talking about the *top-level* `const` modifier here. If the
84 You might want to run your test with `--gmock_verbose=info`. This flag lets
164 // - value_ is leaked.
194 over-specify your tests, and we want to make it harder to do so.
232 fixture's set-up phase) and customize it with more specific rules later. If
243 `ON_CALL` in the set-up part of a test doesn't mean that the calls are expected.
268 Also, you can control the verbosity by specifying `--gmock_verbose=error`. Other
275 argument, you can use testing::DeleteArg<N>() to delete the N'th (zero-indexed)
310 that your modules are too tightly coupled (and less flexible, less reusable,
316 [post](https://testing.googleblog.com/2008/06/defeat-static-cling.html) says it
321 I know it's not a question, but you get an answer for free any way. :-)
329 sometimes called "state-based testing".
331 Mocks are great for what some call "interaction-based" testing: instead of
335 more effective and economical to do than state-based testing.
337 If you are doing state-based testing and using a test double just to simulate
342 wrong problem. :-)
344 ### I got a warning "Uninteresting function call encountered - default action taken.." Should I pan…
346 By all means, NO! It's just an FYI. :-)
351 That's OK - you didn't say it's not OK to call the function!
364 Either way is fine - you want to choose the one that's more convenient for your
372 is the way to go here. See the implementation of `Return()` in `gmock-actions.h`
383 See this [recipe](gmock_cook_book.md#mocking-side-effects) for more details and