diff --git a/googlemock/docs/cheat_sheet.md b/googlemock/docs/cheat_sheet.md index 85620f71..2500260f 100644 --- a/googlemock/docs/cheat_sheet.md +++ b/googlemock/docs/cheat_sheet.md @@ -2,6 +2,8 @@ + + ## Defining a Mock Class diff --git a/googlemock/docs/cook_book.md b/googlemock/docs/cook_book.md index 3fc1198a..d7cee698 100644 --- a/googlemock/docs/cook_book.md +++ b/googlemock/docs/cook_book.md @@ -10,6 +10,8 @@ recommended to write `using ::testing::Foo;` once in your file before using the name `Foo` defined by gMock. We omit such `using` statements in this section for brevity, but you should do it in your own code. + + ## Creating Mock Classes Mock classes are defined as normal classes, using the `MOCK_METHOD` macro to diff --git a/googlemock/docs/for_dummies.md b/googlemock/docs/for_dummies.md index 4ce7b948..a9c012b8 100644 --- a/googlemock/docs/for_dummies.md +++ b/googlemock/docs/for_dummies.md @@ -2,6 +2,8 @@ + + ## What Is gMock? When you write a prototype or test, often it's not feasible or wise to rely on diff --git a/googlemock/docs/gmock_faq.md b/googlemock/docs/gmock_faq.md index 7f8c647a..14acae53 100644 --- a/googlemock/docs/gmock_faq.md +++ b/googlemock/docs/gmock_faq.md @@ -2,6 +2,8 @@ + + ### 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 diff --git a/googlemock/docs/pump_manual.md b/googlemock/docs/pump_manual.md index cdf7c57d..19f1a48e 100644 --- a/googlemock/docs/pump_manual.md +++ b/googlemock/docs/pump_manual.md @@ -1,5 +1,7 @@ Pump is Useful for Meta Programming. + + # The Problem Template and macro libraries often need to define many classes, functions, or