Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
bbf738a2
Commit
bbf738a2
authored
Aug 14, 2018
by
Gennadiy Civil
Browse files
more comments changes
parent
265efde9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
googlemock/src/gmock-spec-builders.cc
googlemock/src/gmock-spec-builders.cc
+1
-1
googlemock/src/gmock.cc
googlemock/src/gmock.cc
+1
-1
googletest/test/googletest-options-test.cc
googletest/test/googletest-options-test.cc
+1
-1
googletest/test/gtest_repeat_test.cc
googletest/test/gtest_repeat_test.cc
+1
-1
No files found.
googlemock/src/gmock-spec-builders.cc
View file @
bbf738a2
...
...
@@ -606,7 +606,7 @@ class MockObjectRegistry {
if
(
it
->
second
.
leakable
)
// The user said it's fine to leak this object.
continue
;
//
TODO(wan@google.com)
: Print the type of the leaked object.
//
FIXME
: Print the type of the leaked object.
// This can help the user identify the leaked object.
std
::
cout
<<
"
\n
"
;
const
MockObjectState
&
state
=
it
->
second
;
...
...
googlemock/src/gmock.cc
View file @
bbf738a2
...
...
@@ -33,7 +33,7 @@
namespace
testing
{
//
TODO(wan@google.com)
: support using environment variables to
//
FIXME
: support using environment variables to
// control the flag values, like what Google Test does.
GMOCK_DEFINE_bool_
(
catch_leaked_mocks
,
true
,
...
...
googletest/test/googletest-options-test.cc
View file @
bbf738a2
...
...
@@ -106,7 +106,7 @@ TEST(OutputFileHelpersTest, GetCurrentExecutableName) {
const
bool
success
=
exe_str
==
"app"
;
#else
// FIXME: remove the hard-coded "lt-" prefix when
//
Chandler Carruth's
libtool replacement is ready.
// libtool replacement is ready.
const
bool
success
=
exe_str
==
"googletest-options-test"
||
exe_str
==
"gtest_all_test"
||
...
...
googletest/test/gtest_repeat_test.cc
View file @
bbf738a2
...
...
@@ -118,7 +118,7 @@ class MyParamTest : public testing::TestWithParam<int> {};
TEST_P
(
MyParamTest
,
ShouldPass
)
{
// FIXME: Make parameter value checking robust
//
WRT order of tests.
// WRT order of tests.
GTEST_CHECK_INT_EQ_
(
g_param_test_count
%
kNumberOfParamTests
,
GetParam
());
g_param_test_count
++
;
}
...
...
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