rename and apply snake_case on FrequentlyAskedQuestions.md

This commit is contained in:
Krystian Kuzniarek 2019-07-13 08:15:20 +02:00
parent 92d92f2f55
commit 1d5b7cc1e2
4 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ Once you understand the basics, check out the rest of the docs:
If you need help, please check the
[KnownIssues](docs/KnownIssues.md) and
[FrequentlyAskedQuestions](docs/FrequentlyAskedQuestions.md) before
[FrequentlyAskedQuestions](docs/frequently_asked_questions.md) before
posting a question on the
[discussion group](http://groups.google.com/group/googlemock).

View File

@ -7,7 +7,7 @@ the respective git branch/tag).**
* [ForDummies](for_dummies.md) -- start here if you are new to Google Mock.
* [CheatSheet](cheat_sheet.md) -- a quick reference.
* [CookBook](cook_book.md) -- recipes for doing various tasks using Google Mock.
* [FrequentlyAskedQuestions](FrequentlyAskedQuestions.md) -- check here before asking a question on the mailing list.
* [FrequentlyAskedQuestions](frequently_asked_questions.md) -- check here before asking a question on the mailing list.
To contribute code to Google Mock, read:

View File

@ -1,6 +1,6 @@
(**Note:** If you get compiler errors that you don't understand, be sure to consult [Google Mock Doctor](FrequentlyAskedQuestions.md#how-am-i-supposed-to-make-sense-of-these-horrible-template-errors).)
(**Note:** If you get compiler errors that you don't understand, be sure to consult [Google Mock Doctor](frequently_asked_questions.md#how-am-i-supposed-to-make-sense-of-these-horrible-template-errors).)
# What Is Google C++ Mocking Framework? #
When you write a prototype or test, often it's not feasible or wise to rely on real objects entirely. A **mock object** implements the same interface as a real object (so it can be used as one), but lets you specify at run time how it will be used and what it should do (which methods will be called? in which order? how many times? with what arguments? what will they return? etc).