summaryrefslogtreecommitdiff
path: root/docs/gmock_faq.md
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-01-19 09:57:06 -0500
committerCJ Johnson <johnsoncj@google.com>2021-01-26 15:42:13 -0500
commit14098f20154966987c59f7255acd67931f9ed0d9 (patch)
treed386387eeed45f49aec84c5576a968f1e64be96e /docs/gmock_faq.md
parentd128fc8252d53baad6ea456fa08cbf9028d255f4 (diff)
downloadgoogletest-git-14098f20154966987c59f7255acd67931f9ed0d9.tar.gz
Googletest export
Merge CONTRIBUTORS, delete LICENSEs in googletest/ and googlemock/ PiperOrigin-RevId: 352558822
Diffstat (limited to 'docs/gmock_faq.md')
-rw-r--r--docs/gmock_faq.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/gmock_faq.md b/docs/gmock_faq.md
index dc4a11da..0d879b27 100644
--- a/docs/gmock_faq.md
+++ b/docs/gmock_faq.md
@@ -1,8 +1,8 @@
## Legacy gMock FAQ {#GMockFaq}
-<!-- GOOGLETEST_CM0021 DO NOT DELETE -->
+go/gmockfaq
-<!-- GOOGLETEST_CM0035 DO NOT DELETE -->
+[TOC]
### When I call a method on my mock object, the method for the real object is invoked instead. What's the problem?
@@ -83,7 +83,7 @@ void Bar(int* p); // Neither p nor *p is const.
void Bar(const int* p); // p is not const, but *p is.
```
-<!-- GOOGLETEST_CM0030 DO NOT DELETE -->
+<!--#include file="includes/g3_mock_multithreaded.md"-->
### I can't figure out why gMock thinks my expectations are not satisfied. What should I do?
@@ -128,7 +128,7 @@ using ::testing::_;
.Times(0);
```
-<!-- GOOGLETEST_CM0031 DO NOT DELETE -->
+<!--#include file="includes/g3_mock_a_stubby_server.md"-->
### I have a failed test where gMock tells me TWICE that a particular expectation is not satisfied. Isn't this redundant?