diff options
author | Abseil Team <absl-team@google.com> | 2020-04-28 17:08:25 -0400 |
---|---|---|
committer | Gennadiy Rozental <rogeeff@google.com> | 2020-05-01 17:12:19 -0400 |
commit | 3cfb4117f7e56f8a7075d83f3e59551dc9e9f328 (patch) | |
tree | 8c037deaa6eef4b6cf6cb7ab534b991cf9c28fc0 /googlemock | |
parent | 472cd8fd8b1c665bddfd021ad0f62d6747fe8e72 (diff) | |
download | googletest-3cfb4117f7e56f8a7075d83f3e59551dc9e9f328.tar.gz googletest-3cfb4117f7e56f8a7075d83f3e59551dc9e9f328.tar.bz2 googletest-3cfb4117f7e56f8a7075d83f3e59551dc9e9f328.zip |
Googletest export
Fix link to "high-perf dependency injection technique".
PiperOrigin-RevId: 308893893
Diffstat (limited to 'googlemock')
-rw-r--r-- | googlemock/docs/gmock_faq.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/gmock_faq.md b/googlemock/docs/gmock_faq.md index 214aabf1..7f8c647a 100644 --- a/googlemock/docs/gmock_faq.md +++ b/googlemock/docs/gmock_faq.md @@ -5,7 +5,7 @@ ### When I call a method on my mock object, the method for the real object is invoked instead. What's the problem? In order for a method to be mocked, it must be *virtual*, unless you use the -[high-perf dependency injection technique](#MockingNonVirtualMethods). +[high-perf dependency injection technique](cook_book.md#MockingNonVirtualMethods). ### Can I mock a variadic function? |