Skip to content

Commit 0c400f6

Browse files
Abseil Teammbxx
Abseil Team
authored andcommitted
Googletest export
GMock: Make Truly explain when it fails I just wrote a test that had a matcher of the form Optional(AllOf( SomeMatcher, SomeOtherMatcher, Truly(SomePredicate))) The predicate failed, the other two matchers succeeded, and I got a hard-to-interpret message saying that the value in the optional "didn't match". Didn't match what? This change improves situations like that slightly by having Truly explain to its result listener when it fails. When there are multiple Trulys in an AllOf, there will be some ambiguity, but it will at least provide more information than right now. PiperOrigin-RevId: 341105141
1 parent d89b363 commit 0c400f6

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

googlemock/include/gmock/gmock-matchers.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -1453,7 +1453,7 @@ class TrulyMatcher {
14531453
// interested in the address of the argument.
14541454
template <typename T>
14551455
bool MatchAndExplain(T& x, // NOLINT
1456-
MatchResultListener* /* listener */) const {
1456+
MatchResultListener* listener) const {
14571457
// Without the if-statement, MSVC sometimes warns about converting
14581458
// a value to bool (warning 4800).
14591459
//
@@ -1462,6 +1462,7 @@ class TrulyMatcher {
14621462
// having no operator!().
14631463
if (predicate_(x))
14641464
return true;
1465+
*listener << "didn't satisfy the given predicate";
14651466
return false;
14661467
}
14671468

googlemock/test/gmock-matchers_test.cc

+7
Original file line numberDiff line numberDiff line change
@@ -2984,6 +2984,13 @@ TEST(TrulyTest, WorksForByRefArguments) {
29842984
EXPECT_FALSE(m.Matches(n));
29852985
}
29862986

2987+
// Tests that Truly(predicate) provides a helpful reason when it fails.
2988+
TEST(TrulyTest, ExplainsFailures) {
2989+
StringMatchResultListener listener;
2990+
EXPECT_FALSE(ExplainMatchResult(Truly(IsPositive), -1, &listener));
2991+
EXPECT_EQ(listener.str(), "didn't satisfy the given predicate");
2992+
}
2993+
29872994
// Tests that Matches(m) is a predicate satisfied by whatever that
29882995
// matches matcher m.
29892996
TEST(MatchesTest, IsSatisfiedByWhatMatchesTheMatcher) {

0 commit comments

Comments
 (0)