Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
92d92f2f
Commit
92d92f2f
authored
Jul 13, 2019
by
Krystian Kuzniarek
Browse files
rename and apply snake_case on ForDummies.md
parent
6078089e
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
googlemock/README.md
googlemock/README.md
+3
-3
googlemock/docs/FrequentlyAskedQuestions.md
googlemock/docs/FrequentlyAskedQuestions.md
+1
-1
googlemock/docs/cook_book.md
googlemock/docs/cook_book.md
+1
-1
googlemock/docs/documentation.md
googlemock/docs/documentation.md
+1
-1
googlemock/docs/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/
F
or
D
ummies.md
)
.
*
Read
[
Google Mock for Dummies
](
../googlemock/docs/
f
or
_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/
F
or
D
ummies.md#using-google-mock-with-any-testing-framework
)
.
you can also use it with
[
any C++ testing framework
](
../googlemock/docs/
f
or
_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/
F
or
D
ummies.md#using-google-mock-with-any-testing-framework
)
../googlemock/docs/
f
or
_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
](
F
or
D
ummies.md#using-google-mock-with-any-testing-framework
)
is how.
[
Here
](
f
or
_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
](
F
or
D
ummies.md
)
document first to make sure you understand
please read the
[
ForDummies
](
f
or
_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
](
F
or
D
ummies.md
)
-- start here if you are new to Google Mock.
*
[
ForDummies
](
f
or
_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/
F
or
D
ummies.md
→
googlemock/docs/
f
or
_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