Skip to content
Snippets Groups Projects
Commit 1d5b7cc1 authored by Krystian Kuzniarek's avatar Krystian Kuzniarek
Browse files

rename and apply snake_case on FrequentlyAskedQuestions.md

parent 92d92f2f
No related branches found
No related tags found
No related merge requests found
......@@ -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).
......
......@@ -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:
......
(**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).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment