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
b5d3a178
Commit
b5d3a178
authored
Sep 27, 2010
by
zhanyong.wan
Browse files
Allows EXPECT_FATAL_FAILURE() and friends to accept a string object as the second argument.
parent
345d9ebf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
6 deletions
+29
-6
include/gtest/gtest-spi.h
include/gtest/gtest-spi.h
+2
-2
src/gtest.cc
src/gtest.cc
+4
-4
test/gtest_unittest.cc
test/gtest_unittest.cc
+23
-0
No files found.
include/gtest/gtest-spi.h
View file @
b5d3a178
...
...
@@ -98,12 +98,12 @@ class GTEST_API_ SingleFailureChecker {
// The constructor remembers the arguments.
SingleFailureChecker
(
const
TestPartResultArray
*
results
,
TestPartResult
::
Type
type
,
const
char
*
substr
);
const
string
&
substr
);
~
SingleFailureChecker
();
private:
const
TestPartResultArray
*
const
results_
;
const
TestPartResult
::
Type
type_
;
const
S
tring
substr_
;
const
s
tring
substr_
;
GTEST_DISALLOW_COPY_AND_ASSIGN_
(
SingleFailureChecker
);
};
...
...
src/gtest.cc
View file @
b5d3a178
...
...
@@ -607,7 +607,7 @@ AssertionResult HasOneFailure(const char* /* results_expr */,
const
char
*
/* substr_expr */
,
const
TestPartResultArray
&
results
,
TestPartResult
::
Type
type
,
const
char
*
substr
)
{
const
string
&
substr
)
{
const
String
expected
(
type
==
TestPartResult
::
kFatalFailure
?
"1 fatal failure"
:
"1 non-fatal failure"
);
...
...
@@ -629,7 +629,7 @@ AssertionResult HasOneFailure(const char* /* results_expr */,
return
AssertionFailure
(
msg
);
}
if
(
strstr
(
r
.
message
(),
substr
)
==
NULL
)
{
if
(
strstr
(
r
.
message
(),
substr
.
c_str
()
)
==
NULL
)
{
msg
<<
"Expected: "
<<
expected
<<
" containing
\"
"
<<
substr
<<
"
\"\n
"
<<
" Actual:
\n
"
...
...
@@ -646,7 +646,7 @@ AssertionResult HasOneFailure(const char* /* results_expr */,
SingleFailureChecker
::
SingleFailureChecker
(
const
TestPartResultArray
*
results
,
TestPartResult
::
Type
type
,
const
char
*
substr
)
const
string
&
substr
)
:
results_
(
results
),
type_
(
type
),
substr_
(
substr
)
{}
...
...
@@ -656,7 +656,7 @@ SingleFailureChecker:: SingleFailureChecker(
// type and contains the given substring. If that's not the case, a
// non-fatal failure will be generated.
SingleFailureChecker
::~
SingleFailureChecker
()
{
EXPECT_PRED_FORMAT3
(
HasOneFailure
,
*
results_
,
type_
,
substr_
.
c_str
()
);
EXPECT_PRED_FORMAT3
(
HasOneFailure
,
*
results_
,
type_
,
substr_
);
}
DefaultGlobalTestPartResultReporter
::
DefaultGlobalTestPartResultReporter
(
...
...
test/gtest_unittest.cc
View file @
b5d3a178
...
...
@@ -1335,6 +1335,17 @@ TEST_F(ExpectFatalFailureTest, CatchesFatalFaliure) {
EXPECT_FATAL_FAILURE
(
AddFatalFailure
(),
"Expected fatal failure."
);
}
#if GTEST_HAS_GLOBAL_STRING
TEST_F
(
ExpectFatalFailureTest
,
AcceptsStringObject
)
{
EXPECT_FATAL_FAILURE
(
AddFatalFailure
(),
::
string
(
"Expected fatal failure."
));
}
#endif
TEST_F
(
ExpectFatalFailureTest
,
AcceptsStdStringObject
)
{
EXPECT_FATAL_FAILURE
(
AddFatalFailure
(),
::
std
::
string
(
"Expected fatal failure."
));
}
TEST_F
(
ExpectFatalFailureTest
,
CatchesFatalFailureOnAllThreads
)
{
// We have another test below to verify that the macro catches fatal
// failures generated on another thread.
...
...
@@ -1412,6 +1423,18 @@ TEST_F(ExpectNonfatalFailureTest, CatchesNonfatalFailure) {
"Expected non-fatal failure."
);
}
#if GTEST_HAS_GLOBAL_STRING
TEST_F
(
ExpectNonfatalFailureTest
,
AcceptsStringObject
)
{
EXPECT_NONFATAL_FAILURE
(
AddNonfatalFailure
(),
::
string
(
"Expected non-fatal failure."
));
}
#endif
TEST_F
(
ExpectNonfatalFailureTest
,
AcceptsStdStringObject
)
{
EXPECT_NONFATAL_FAILURE
(
AddNonfatalFailure
(),
::
std
::
string
(
"Expected non-fatal failure."
));
}
TEST_F
(
ExpectNonfatalFailureTest
,
CatchesNonfatalFailureOnAllThreads
)
{
// We have another test below to verify that the macro catches
// non-fatal failures generated on another thread.
...
...
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