Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
92d92f2f
Commit
92d92f2f
authored
Jul 13, 2019
by
Krystian Kuzniarek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename and apply snake_case on ForDummies.md
parent
6078089e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
README.md
googlemock/README.md
+3
-3
FrequentlyAskedQuestions.md
googlemock/docs/FrequentlyAskedQuestions.md
+1
-1
cook_book.md
googlemock/docs/cook_book.md
+1
-1
documentation.md
googlemock/docs/documentation.md
+1
-1
for_dummies.md
googlemock/docs/for_dummies.md
+0
-0
No files found.
googlemock/README.md
View file @
92d92f2f
...
@@ -55,7 +55,7 @@ documentation in the following order:
...
@@ -55,7 +55,7 @@ documentation in the following order:
*
Learn the
[
basics
](
../googletest/docs/primer.md
)
of
*
Learn the
[
basics
](
../googletest/docs/primer.md
)
of
Google Test, if you choose to use Google Mock with it (recommended).
Google Test, if you choose to use Google Mock with it (recommended).
*
Read
[
Google Mock for Dummies
](
../googlemock/docs/
ForD
ummies.md
)
.
*
Read
[
Google Mock for Dummies
](
../googlemock/docs/
for_d
ummies.md
)
.
*
Read the instructions below on how to build Google Mock.
*
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.
You can also watch Zhanyong's
[
talk
](
http://www.youtube.com/watch?v=sYpCyLI47rM
)
on Google Mock's usage and implementation.
...
@@ -79,7 +79,7 @@ posting a question on the
...
@@ -79,7 +79,7 @@ posting a question on the
Google Mock is not a testing framework itself. Instead, it needs a
Google Mock is not a testing framework itself. Instead, it needs a
testing framework for writing tests. Google Mock works seamlessly
testing framework for writing tests. Google Mock works seamlessly
with
[
Google Test
](
https://github.com/google/googletest
)
, but
with
[
Google Test
](
https://github.com/google/googletest
)
, but
you can also use it with
[
any C++ testing framework
](
../googlemock/docs/
ForD
ummies.md#using-google-mock-with-any-testing-framework
)
.
you can also use it with
[
any C++ testing framework
](
../googlemock/docs/
for_d
ummies.md#using-google-mock-with-any-testing-framework
)
.
### Requirements for End Users ###
### Requirements for End Users ###
...
@@ -90,7 +90,7 @@ You must use the bundled version of Google Test when using Google Mock.
...
@@ -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
You can also easily configure Google Mock to work with another testing
framework, although it will still need Google Test. Please read
framework, although it will still need Google Test. Please read
[
"Using_Google_Mock_with_Any_Testing_Framework"
](
[
"Using_Google_Mock_with_Any_Testing_Framework"
](
../googlemock/docs/
ForD
ummies.md#using-google-mock-with-any-testing-framework
)
../googlemock/docs/
for_d
ummies.md#using-google-mock-with-any-testing-framework
)
for instructions.
for instructions.
Google Mock depends on advanced C++ features and thus requires a more
Google Mock depends on advanced C++ features and thus requires a more
...
...
googlemock/docs/FrequentlyAskedQuestions.md
View file @
92d92f2f
...
@@ -206,7 +206,7 @@ need any help.
...
@@ -206,7 +206,7 @@ need any help.
Google Mock works out of the box with Google Test. However, it's easy
Google Mock works out of the box with Google Test. However, it's easy
to configure it to work with any testing framework of your choice.
to configure it to work with any testing framework of your choice.
[
Here
](
ForD
ummies.md#using-google-mock-with-any-testing-framework
)
is how.
[
Here
](
for_d
ummies.md#using-google-mock-with-any-testing-framework
)
is how.
## How am I supposed to make sense of these horrible template errors? ##
## How am I supposed to make sense of these horrible template errors? ##
...
...
googlemock/docs/cook_book.md
View file @
92d92f2f
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<!-- GOOGLETEST_CM0011 DO NOT DELETE -->
<!-- GOOGLETEST_CM0011 DO NOT DELETE -->
You can find recipes for using Google Mock here. If you haven't yet,
You can find recipes for using Google Mock here. If you haven't yet,
please read the
[
ForDummies
](
ForD
ummies.md
)
document first to make sure you understand
please read the
[
ForDummies
](
for_d
ummies.md
)
document first to make sure you understand
the basics.
the basics.
**Note:**
Google Mock lives in the
`testing`
name space. For
**Note:**
Google Mock lives in the
`testing`
name space. For
...
...
googlemock/docs/documentation.md
View file @
92d92f2f
...
@@ -4,7 +4,7 @@ current git version)**
...
@@ -4,7 +4,7 @@ current git version)**
documentation for that specific version instead (e.g. by checking out
documentation for that specific version instead (e.g. by checking out
the respective git branch/tag).
**
the respective git branch/tag).
**
*
[
ForDummies
](
ForD
ummies.md
)
-- start here if you are new to Google Mock.
*
[
ForDummies
](
for_d
ummies.md
)
-- start here if you are new to Google Mock.
*
[
CheatSheet
](
cheat_sheet.md
)
-- a quick reference.
*
[
CheatSheet
](
cheat_sheet.md
)
-- a quick reference.
*
[
CookBook
](
cook_book.md
)
-- recipes for doing various tasks using Google Mock.
*
[
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
](
FrequentlyAskedQuestions.md
)
-- check here before asking a question on the mailing list.
...
...
googlemock/docs/
ForD
ummies.md
→
googlemock/docs/
for_d
ummies.md
View file @
92d92f2f
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment