diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2019-07-15 17:29:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-15 17:29:29 (GMT) |
commit | 5c4d53fd52d17d882b0b9bc26d715d2a0e7cfef2 (patch) | |
tree | d9395480bfad1c576a230357c5791dd7e748afa7 /googlemock/README.md | |
parent | ee3aa831172090fd5442820f215cb04ab6062756 (diff) | |
parent | f81dbd6ce8f055b20441aeb636b9c9b7bb23cc7a (diff) | |
download | googletest-5c4d53fd52d17d882b0b9bc26d715d2a0e7cfef2.zip googletest-5c4d53fd52d17d882b0b9bc26d715d2a0e7cfef2.tar.gz googletest-5c4d53fd52d17d882b0b9bc26d715d2a0e7cfef2.tar.bz2 |
Merge pull request #2326 from kuzkry/missing-references-to-documentation
Add missing references to documentation
Diffstat (limited to 'googlemock/README.md')
-rw-r--r-- | googlemock/README.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/googlemock/README.md b/googlemock/README.md index 6465fc6..36f8776 100644 --- a/googlemock/README.md +++ b/googlemock/README.md @@ -55,21 +55,21 @@ documentation in the following order: * Learn the [basics](../googletest/docs/primer.md) of Google Test, if you choose to use Google Mock with it (recommended). - * Read [Google Mock for Dummies](../googlemock/docs/ForDummies.md). + * Read [Google Mock for Dummies](../googlemock/docs/for_dummies.md). * Read the instructions below on how to build Google Mock. You can also watch Zhanyong's [talk](http://www.youtube.com/watch?v=sYpCyLI47rM) on Google Mock's usage and implementation. Once you understand the basics, check out the rest of the docs: - * [CheatSheet](../googlemock/docs/CheatSheet.md) - all the commonly used stuff + * [CheatSheet](../googlemock/docs/cheat_sheet.md) - all the commonly used stuff at a glance. * [CookBook](../googlemock/docs/cook_book.md) - recipes for getting things done, including advanced techniques. If you need help, please check the -[KnownIssues](docs/KnownIssues.md) and -[FrequentlyAskedQuestions](docs/FrequentlyAskedQuestions.md) before +[KnownIssues](docs/known_issues.md) and +[FrequentlyAskedQuestions](docs/frequently_asked_questions.md) before posting a question on the [discussion group](http://groups.google.com/group/googlemock). @@ -79,7 +79,7 @@ posting a question on the Google Mock is not a testing framework itself. Instead, it needs a testing framework for writing tests. Google Mock works seamlessly with [Google Test](https://github.com/google/googletest), but -you can also use it with [any C++ testing framework](../googlemock/docs/ForDummies.md#using-google-mock-with-any-testing-framework). +you can also use it with [any C++ testing framework](../googlemock/docs/for_dummies.md#using-google-mock-with-any-testing-framework). ### Requirements for End Users ### @@ -90,7 +90,7 @@ You must use the bundled version of Google Test when using Google Mock. You can also easily configure Google Mock to work with another testing framework, although it will still need Google Test. Please read ["Using_Google_Mock_with_Any_Testing_Framework"]( - ../googlemock/docs/ForDummies.md#using-google-mock-with-any-testing-framework) + ../googlemock/docs/for_dummies.md#using-google-mock-with-any-testing-framework) for instructions. Google Mock depends on advanced C++ features and thus requires a more |