diff options
author | Krystian Kuzniarek <krystian.kuzniarek@gmail.com> | 2019-07-13 06:15:20 (GMT) |
---|---|---|
committer | Krystian Kuzniarek <krystian.kuzniarek@gmail.com> | 2019-07-13 06:15:20 (GMT) |
commit | 1d5b7cc1e2566e74fb288a61652114176bf65356 (patch) | |
tree | ba3be53706504d75293a48c672d05963718a0857 /googlemock/docs | |
parent | 92d92f2f551541b8bbc74c39622f80e2479812aa (diff) | |
download | googletest-1d5b7cc1e2566e74fb288a61652114176bf65356.zip googletest-1d5b7cc1e2566e74fb288a61652114176bf65356.tar.gz googletest-1d5b7cc1e2566e74fb288a61652114176bf65356.tar.bz2 |
rename and apply snake_case on FrequentlyAskedQuestions.md
Diffstat (limited to 'googlemock/docs')
-rw-r--r-- | googlemock/docs/documentation.md | 2 | ||||
-rw-r--r-- | googlemock/docs/for_dummies.md | 2 | ||||
-rw-r--r-- | googlemock/docs/frequently_asked_questions.md (renamed from googlemock/docs/FrequentlyAskedQuestions.md) | 0 |
3 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/documentation.md b/googlemock/docs/documentation.md index f4456d5..0f19e6f 100644 --- a/googlemock/docs/documentation.md +++ b/googlemock/docs/documentation.md @@ -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: diff --git a/googlemock/docs/for_dummies.md b/googlemock/docs/for_dummies.md index 4b7551e..2110531 100644 --- a/googlemock/docs/for_dummies.md +++ b/googlemock/docs/for_dummies.md @@ -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). diff --git a/googlemock/docs/FrequentlyAskedQuestions.md b/googlemock/docs/frequently_asked_questions.md index de1ad2a..de1ad2a 100644 --- a/googlemock/docs/FrequentlyAskedQuestions.md +++ b/googlemock/docs/frequently_asked_questions.md |