summaryrefslogtreecommitdiffstats
path: root/docs/gmock_faq.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/gmock_faq.md')
-rw-r--r--docs/gmock_faq.md8
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/gmock_faq.md b/docs/gmock_faq.md
index 0d879b2..c02e539 100644
--- a/docs/gmock_faq.md
+++ b/docs/gmock_faq.md
@@ -1,9 +1,5 @@
## Legacy gMock FAQ {#GMockFaq}
-go/gmockfaq
-
-[TOC]
-
### 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
@@ -83,8 +79,6 @@ void Bar(int* p); // Neither p nor *p is const.
void Bar(const int* p); // p is not const, but *p is.
```
-<!--#include file="includes/g3_mock_multithreaded.md"-->
-
### I can't figure out why gMock thinks my expectations are not satisfied. What should I do?
You might want to run your test with `--gmock_verbose=info`. This flag lets
@@ -128,8 +122,6 @@ using ::testing::_;
.Times(0);
```
-<!--#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?
When gMock detects a failure, it prints relevant information (the mock function