Home | History | Annotate | Download | only in docs

Lines Matching full:remember

459 With that, you can use `MockFoo` in your tests as usual. Just remember
1005 Remember: if you do this, don't change `bar` after the
1052 Remember that there is `AllOf()`.
1344 Remember that `_` is the wildcard matcher that matches anything. With this, if `GetDomainOwner("google.com")` is called, it will do what the second `EXPECT_CALL` says; if it is called with a different argument, it will do what the first `EXPECT_CALL` says.
2348 If you need your mock method to do more than just moving a pre-defined value, remember that you can always use `Invoke()` to call a lambda or a callable object, which can do pretty much anything you want:
2362 Now there?s one topic we haven?t covered: how do you set expectations on `ShareBuzz()`, which takes a move-only-typed parameter? The answer is you don?t. Instead, you set expectations on the `DoShareBuzz()` mock method (remember that we defined a `MOCK_METHOD` for `DoShareBuzz()`, not `ShareBuzz()`):
2663 Remember the steps for using a mock:
2705 Also, remember that `DefaultValue<T>` is a global resource that