Include the param names in the generated description of the MATCHER_P matchers.
PiperOrigin-RevId: 418497526 Change-Id: Ie53c3c0810c10a32cbcb941e3ca1ee8fb1ddd9f9
This commit is contained in:
parent
d81ae2f0bf
commit
6b74da4757
@ -3864,9 +3864,9 @@ BoundSecondMatcher<Tuple2Matcher, Second> MatcherBindSecond(
|
|||||||
// 'negation' is false; otherwise returns the description of the
|
// 'negation' is false; otherwise returns the description of the
|
||||||
// negation of the matcher. 'param_values' contains a list of strings
|
// negation of the matcher. 'param_values' contains a list of strings
|
||||||
// that are the print-out of the matcher's parameters.
|
// that are the print-out of the matcher's parameters.
|
||||||
GTEST_API_ std::string FormatMatcherDescription(bool negation,
|
GTEST_API_ std::string FormatMatcherDescription(
|
||||||
const char* matcher_name,
|
bool negation, const char* matcher_name,
|
||||||
const Strings& param_values);
|
const std::vector<const char*>& param_names, const Strings& param_values);
|
||||||
|
|
||||||
// Implements a matcher that checks the value of a optional<> type variable.
|
// Implements a matcher that checks the value of a optional<> type variable.
|
||||||
template <typename ValueMatcher>
|
template <typename ValueMatcher>
|
||||||
@ -5449,7 +5449,7 @@ PolymorphicMatcher<internal::ExceptionMatcherImpl<Err>> ThrowsMessage(
|
|||||||
return gmock_description; \
|
return gmock_description; \
|
||||||
} \
|
} \
|
||||||
return ::testing::internal::FormatMatcherDescription(negation, #name, \
|
return ::testing::internal::FormatMatcherDescription(negation, #name, \
|
||||||
{}); \
|
{}, {}); \
|
||||||
} \
|
} \
|
||||||
}; \
|
}; \
|
||||||
}; \
|
}; \
|
||||||
@ -5461,33 +5461,41 @@ PolymorphicMatcher<internal::ExceptionMatcherImpl<Err>> ThrowsMessage(
|
|||||||
const
|
const
|
||||||
|
|
||||||
#define MATCHER_P(name, p0, description) \
|
#define MATCHER_P(name, p0, description) \
|
||||||
GMOCK_INTERNAL_MATCHER(name, name##MatcherP, description, (p0))
|
GMOCK_INTERNAL_MATCHER(name, name##MatcherP, description, (#p0), (p0))
|
||||||
#define MATCHER_P2(name, p0, p1, description) \
|
#define MATCHER_P2(name, p0, p1, description) \
|
||||||
GMOCK_INTERNAL_MATCHER(name, name##MatcherP2, description, (p0, p1))
|
GMOCK_INTERNAL_MATCHER(name, name##MatcherP2, description, (#p0, #p1), \
|
||||||
|
(p0, p1))
|
||||||
#define MATCHER_P3(name, p0, p1, p2, description) \
|
#define MATCHER_P3(name, p0, p1, p2, description) \
|
||||||
GMOCK_INTERNAL_MATCHER(name, name##MatcherP3, description, (p0, p1, p2))
|
GMOCK_INTERNAL_MATCHER(name, name##MatcherP3, description, (#p0, #p1, #p2), \
|
||||||
|
(p0, p1, p2))
|
||||||
#define MATCHER_P4(name, p0, p1, p2, p3, description) \
|
#define MATCHER_P4(name, p0, p1, p2, p3, description) \
|
||||||
GMOCK_INTERNAL_MATCHER(name, name##MatcherP4, description, (p0, p1, p2, p3))
|
GMOCK_INTERNAL_MATCHER(name, name##MatcherP4, description, \
|
||||||
|
(#p0, #p1, #p2, #p3), (p0, p1, p2, p3))
|
||||||
#define MATCHER_P5(name, p0, p1, p2, p3, p4, description) \
|
#define MATCHER_P5(name, p0, p1, p2, p3, p4, description) \
|
||||||
GMOCK_INTERNAL_MATCHER(name, name##MatcherP5, description, \
|
GMOCK_INTERNAL_MATCHER(name, name##MatcherP5, description, \
|
||||||
(p0, p1, p2, p3, p4))
|
(#p0, #p1, #p2, #p3, #p4), (p0, p1, p2, p3, p4))
|
||||||
#define MATCHER_P6(name, p0, p1, p2, p3, p4, p5, description) \
|
#define MATCHER_P6(name, p0, p1, p2, p3, p4, p5, description) \
|
||||||
GMOCK_INTERNAL_MATCHER(name, name##MatcherP6, description, \
|
GMOCK_INTERNAL_MATCHER(name, name##MatcherP6, description, \
|
||||||
|
(#p0, #p1, #p2, #p3, #p4, #p5), \
|
||||||
(p0, p1, p2, p3, p4, p5))
|
(p0, p1, p2, p3, p4, p5))
|
||||||
#define MATCHER_P7(name, p0, p1, p2, p3, p4, p5, p6, description) \
|
#define MATCHER_P7(name, p0, p1, p2, p3, p4, p5, p6, description) \
|
||||||
GMOCK_INTERNAL_MATCHER(name, name##MatcherP7, description, \
|
GMOCK_INTERNAL_MATCHER(name, name##MatcherP7, description, \
|
||||||
|
(#p0, #p1, #p2, #p3, #p4, #p5, #p6), \
|
||||||
(p0, p1, p2, p3, p4, p5, p6))
|
(p0, p1, p2, p3, p4, p5, p6))
|
||||||
#define MATCHER_P8(name, p0, p1, p2, p3, p4, p5, p6, p7, description) \
|
#define MATCHER_P8(name, p0, p1, p2, p3, p4, p5, p6, p7, description) \
|
||||||
GMOCK_INTERNAL_MATCHER(name, name##MatcherP8, description, \
|
GMOCK_INTERNAL_MATCHER(name, name##MatcherP8, description, \
|
||||||
|
(#p0, #p1, #p2, #p3, #p4, #p5, #p6, #p7), \
|
||||||
(p0, p1, p2, p3, p4, p5, p6, p7))
|
(p0, p1, p2, p3, p4, p5, p6, p7))
|
||||||
#define MATCHER_P9(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, description) \
|
#define MATCHER_P9(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, description) \
|
||||||
GMOCK_INTERNAL_MATCHER(name, name##MatcherP9, description, \
|
GMOCK_INTERNAL_MATCHER(name, name##MatcherP9, description, \
|
||||||
|
(#p0, #p1, #p2, #p3, #p4, #p5, #p6, #p7, #p8), \
|
||||||
(p0, p1, p2, p3, p4, p5, p6, p7, p8))
|
(p0, p1, p2, p3, p4, p5, p6, p7, p8))
|
||||||
#define MATCHER_P10(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, description) \
|
#define MATCHER_P10(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, description) \
|
||||||
GMOCK_INTERNAL_MATCHER(name, name##MatcherP10, description, \
|
GMOCK_INTERNAL_MATCHER(name, name##MatcherP10, description, \
|
||||||
|
(#p0, #p1, #p2, #p3, #p4, #p5, #p6, #p7, #p8, #p9), \
|
||||||
(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9))
|
(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9))
|
||||||
|
|
||||||
#define GMOCK_INTERNAL_MATCHER(name, full_name, description, args) \
|
#define GMOCK_INTERNAL_MATCHER(name, full_name, description, arg_names, args) \
|
||||||
template <GMOCK_INTERNAL_MATCHER_TEMPLATE_PARAMS(args)> \
|
template <GMOCK_INTERNAL_MATCHER_TEMPLATE_PARAMS(args)> \
|
||||||
class full_name : public ::testing::internal::MatcherBaseImpl< \
|
class full_name : public ::testing::internal::MatcherBaseImpl< \
|
||||||
full_name<GMOCK_INTERNAL_MATCHER_TYPE_PARAMS(args)>> { \
|
full_name<GMOCK_INTERNAL_MATCHER_TYPE_PARAMS(args)>> { \
|
||||||
@ -5516,7 +5524,7 @@ PolymorphicMatcher<internal::ExceptionMatcherImpl<Err>> ThrowsMessage(
|
|||||||
return gmock_description; \
|
return gmock_description; \
|
||||||
} \
|
} \
|
||||||
return ::testing::internal::FormatMatcherDescription( \
|
return ::testing::internal::FormatMatcherDescription( \
|
||||||
negation, #name, \
|
negation, #name, {GMOCK_PP_REMOVE_PARENS(arg_names)}, \
|
||||||
::testing::internal::UniversalTersePrintTupleFieldsToStrings( \
|
::testing::internal::UniversalTersePrintTupleFieldsToStrings( \
|
||||||
::std::tuple<GMOCK_INTERNAL_MATCHER_TYPE_PARAMS(args)>( \
|
::std::tuple<GMOCK_INTERNAL_MATCHER_TYPE_PARAMS(args)>( \
|
||||||
GMOCK_INTERNAL_MATCHER_MEMBERS_USAGE(args)))); \
|
GMOCK_INTERNAL_MATCHER_MEMBERS_USAGE(args)))); \
|
||||||
|
@ -38,9 +38,12 @@
|
|||||||
#define GOOGLEMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
|
#define GOOGLEMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include <ostream> // NOLINT
|
#include <ostream> // NOLINT
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "gmock/internal/gmock-port.h"
|
#include "gmock/internal/gmock-port.h"
|
||||||
#include "gtest/gtest.h"
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
@ -61,7 +64,8 @@ namespace internal {
|
|||||||
|
|
||||||
// Joins a vector of strings as if they are fields of a tuple; returns
|
// Joins a vector of strings as if they are fields of a tuple; returns
|
||||||
// the joined string.
|
// the joined string.
|
||||||
GTEST_API_ std::string JoinAsTuple(const Strings& fields);
|
GTEST_API_ std::string JoinAsKeyValueTuple(
|
||||||
|
const std::vector<const char*>& names, const Strings& values);
|
||||||
|
|
||||||
// Converts an identifier name to a space-separated list of lower-case
|
// Converts an identifier name to a space-separated list of lower-case
|
||||||
// words. Each maximum substring of the form [A-Za-z][a-z]*|\d+ is
|
// words. Each maximum substring of the form [A-Za-z][a-z]*|\d+ is
|
||||||
|
@ -44,6 +44,7 @@
|
|||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <ostream> // NOLINT
|
#include <ostream> // NOLINT
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "gmock/gmock.h"
|
#include "gmock/gmock.h"
|
||||||
#include "gmock/internal/gmock-port.h"
|
#include "gmock/internal/gmock-port.h"
|
||||||
@ -54,22 +55,23 @@ namespace internal {
|
|||||||
|
|
||||||
// Joins a vector of strings as if they are fields of a tuple; returns
|
// Joins a vector of strings as if they are fields of a tuple; returns
|
||||||
// the joined string.
|
// the joined string.
|
||||||
GTEST_API_ std::string JoinAsTuple(const Strings& fields) {
|
GTEST_API_ std::string JoinAsKeyValueTuple(
|
||||||
switch (fields.size()) {
|
const std::vector<const char*>& names, const Strings& values) {
|
||||||
case 0:
|
GTEST_CHECK_(names.size() == values.size());
|
||||||
|
if (values.empty()) {
|
||||||
return "";
|
return "";
|
||||||
case 1:
|
}
|
||||||
return fields[0];
|
const auto build_one = [&](const size_t i) {
|
||||||
default:
|
return std::string(names[i]) + ": " + values[i];
|
||||||
std::string result = "(" + fields[0];
|
};
|
||||||
for (size_t i = 1; i < fields.size(); i++) {
|
std::string result = "(" + build_one(0);
|
||||||
|
for (size_t i = 1; i < values.size(); i++) {
|
||||||
result += ", ";
|
result += ", ";
|
||||||
result += fields[i];
|
result += build_one(i);
|
||||||
}
|
}
|
||||||
result += ")";
|
result += ")";
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Converts an identifier name to a space-separated list of lower-case
|
// Converts an identifier name to a space-separated list of lower-case
|
||||||
// words. Each maximum substring of the form [A-Za-z][a-z]*|\d+ is
|
// words. Each maximum substring of the form [A-Za-z][a-z]*|\d+ is
|
||||||
|
@ -36,9 +36,11 @@
|
|||||||
#include "gmock/gmock-matchers.h"
|
#include "gmock/gmock-matchers.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
namespace testing {
|
namespace testing {
|
||||||
namespace internal {
|
namespace internal {
|
||||||
@ -48,11 +50,13 @@ namespace internal {
|
|||||||
// 'negation' is false; otherwise returns the description of the
|
// 'negation' is false; otherwise returns the description of the
|
||||||
// negation of the matcher. 'param_values' contains a list of strings
|
// negation of the matcher. 'param_values' contains a list of strings
|
||||||
// that are the print-out of the matcher's parameters.
|
// that are the print-out of the matcher's parameters.
|
||||||
GTEST_API_ std::string FormatMatcherDescription(bool negation,
|
GTEST_API_ std::string FormatMatcherDescription(
|
||||||
const char* matcher_name,
|
bool negation, const char* matcher_name,
|
||||||
const Strings& param_values) {
|
const std::vector<const char*>& param_names, const Strings& param_values) {
|
||||||
std::string result = ConvertIdentifierNameToWords(matcher_name);
|
std::string result = ConvertIdentifierNameToWords(matcher_name);
|
||||||
if (param_values.size() >= 1) result += " " + JoinAsTuple(param_values);
|
if (param_values.size() >= 1) {
|
||||||
|
result += " " + JoinAsKeyValueTuple(param_names, param_values);
|
||||||
|
}
|
||||||
return negation ? "not (" + result + ")" : result;
|
return negation ? "not (" + result + ")" : result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -70,24 +70,23 @@ namespace internal {
|
|||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
TEST(JoinAsTupleTest, JoinsEmptyTuple) {
|
TEST(JoinAsKeyValueTupleTest, JoinsEmptyTuple) {
|
||||||
EXPECT_EQ("", JoinAsTuple(Strings()));
|
EXPECT_EQ("", JoinAsKeyValueTuple({}, Strings()));
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(JoinAsTupleTest, JoinsOneTuple) {
|
TEST(JoinAsKeyValueTupleTest, JoinsOneTuple) {
|
||||||
const char* fields[] = {"1"};
|
EXPECT_EQ("(a: 1)", JoinAsKeyValueTuple({"a"}, {"1"}));
|
||||||
EXPECT_EQ("1", JoinAsTuple(Strings(fields, fields + 1)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(JoinAsTupleTest, JoinsTwoTuple) {
|
TEST(JoinAsKeyValueTupleTest, JoinsTwoTuple) {
|
||||||
const char* fields[] = {"1", "a"};
|
EXPECT_EQ("(a: 1, b: 2)", JoinAsKeyValueTuple({"a", "b"}, {"1", "2"}));
|
||||||
EXPECT_EQ("(1, a)", JoinAsTuple(Strings(fields, fields + 2)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(JoinAsTupleTest, JoinsTenTuple) {
|
TEST(JoinAsKeyValueTupleTest, JoinsTenTuple) {
|
||||||
const char* fields[] = {"1", "2", "3", "4", "5", "6", "7", "8", "9", "10"};
|
EXPECT_EQ(
|
||||||
EXPECT_EQ("(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)",
|
"(a: 1, b: 2, c: 3, d: 4, e: 5, f: 6, g: 7, h: 8, i: 9, j: 10)",
|
||||||
JoinAsTuple(Strings(fields, fields + 10)));
|
JoinAsKeyValueTuple({"a", "b", "c", "d", "e", "f", "g", "h", "i", "j"},
|
||||||
|
{"1", "2", "3", "4", "5", "6", "7", "8", "9", "10"}));
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(ConvertIdentifierNameToWordsTest, WorksWhenNameContainsNoWord) {
|
TEST(ConvertIdentifierNameToWordsTest, WorksWhenNameContainsNoWord) {
|
||||||
|
@ -6439,19 +6439,16 @@ TEST(IsReadableTypeNameTest, ReturnsFalseForLongFunctionTypeNames) {
|
|||||||
|
|
||||||
TEST(FormatMatcherDescriptionTest, WorksForEmptyDescription) {
|
TEST(FormatMatcherDescriptionTest, WorksForEmptyDescription) {
|
||||||
EXPECT_EQ("is even",
|
EXPECT_EQ("is even",
|
||||||
FormatMatcherDescription(false, "IsEven", Strings()));
|
FormatMatcherDescription(false, "IsEven", {}, Strings()));
|
||||||
EXPECT_EQ("not (is even)",
|
EXPECT_EQ("not (is even)",
|
||||||
FormatMatcherDescription(true, "IsEven", Strings()));
|
FormatMatcherDescription(true, "IsEven", {}, Strings()));
|
||||||
|
|
||||||
const char* params[] = {"5"};
|
EXPECT_EQ("equals (a: 5)",
|
||||||
EXPECT_EQ("equals 5",
|
FormatMatcherDescription(false, "Equals", {"a"}, {"5"}));
|
||||||
FormatMatcherDescription(false, "Equals",
|
|
||||||
Strings(params, params + 1)));
|
|
||||||
|
|
||||||
const char* params2[] = {"5", "8"};
|
EXPECT_EQ(
|
||||||
EXPECT_EQ("is in range (5, 8)",
|
"is in range (a: 5, b: 8)",
|
||||||
FormatMatcherDescription(false, "IsInRange",
|
FormatMatcherDescription(false, "IsInRange", {"a", "b"}, {"5", "8"}));
|
||||||
Strings(params2, params2 + 2)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tests PolymorphicMatcher::mutable_impl().
|
// Tests PolymorphicMatcher::mutable_impl().
|
||||||
@ -7810,8 +7807,8 @@ TEST(MatcherPMacroTest, Works) {
|
|||||||
EXPECT_TRUE(m.Matches(36));
|
EXPECT_TRUE(m.Matches(36));
|
||||||
EXPECT_FALSE(m.Matches(5));
|
EXPECT_FALSE(m.Matches(5));
|
||||||
|
|
||||||
EXPECT_EQ("is greater than 32 and 5", Describe(m));
|
EXPECT_EQ("is greater than 32 and (n: 5)", Describe(m));
|
||||||
EXPECT_EQ("not (is greater than 32 and 5)", DescribeNegation(m));
|
EXPECT_EQ("not (is greater than 32 and (n: 5))", DescribeNegation(m));
|
||||||
EXPECT_EQ("", Explain(m, 36));
|
EXPECT_EQ("", Explain(m, 36));
|
||||||
EXPECT_EQ("", Explain(m, 5));
|
EXPECT_EQ("", Explain(m, 5));
|
||||||
}
|
}
|
||||||
@ -7822,8 +7819,8 @@ MATCHER_P(_is_Greater_Than32and_, n, "") { return arg > 32 && arg > n; }
|
|||||||
TEST(MatcherPMacroTest, GeneratesCorrectDescription) {
|
TEST(MatcherPMacroTest, GeneratesCorrectDescription) {
|
||||||
const Matcher<int> m = _is_Greater_Than32and_(5);
|
const Matcher<int> m = _is_Greater_Than32and_(5);
|
||||||
|
|
||||||
EXPECT_EQ("is greater than 32 and 5", Describe(m));
|
EXPECT_EQ("is greater than 32 and (n: 5)", Describe(m));
|
||||||
EXPECT_EQ("not (is greater than 32 and 5)", DescribeNegation(m));
|
EXPECT_EQ("not (is greater than 32 and (n: 5))", DescribeNegation(m));
|
||||||
EXPECT_EQ("", Explain(m, 36));
|
EXPECT_EQ("", Explain(m, 36));
|
||||||
EXPECT_EQ("", Explain(m, 5));
|
EXPECT_EQ("", Explain(m, 5));
|
||||||
}
|
}
|
||||||
@ -7856,7 +7853,8 @@ TEST(MatcherPMacroTest, WorksWhenExplicitlyInstantiatedWithReference) {
|
|||||||
// likely it will just annoy the user. If the address is
|
// likely it will just annoy the user. If the address is
|
||||||
// interesting, the user should consider passing the parameter by
|
// interesting, the user should consider passing the parameter by
|
||||||
// pointer instead.
|
// pointer instead.
|
||||||
EXPECT_EQ("references uncopyable 1-byte object <31>", Describe(m));
|
EXPECT_EQ("references uncopyable (variable: 1-byte object <31>)",
|
||||||
|
Describe(m));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tests that the body of MATCHER_Pn() can reference the parameter
|
// Tests that the body of MATCHER_Pn() can reference the parameter
|
||||||
@ -7907,7 +7905,9 @@ TEST(MatcherPnMacroTest,
|
|||||||
// likely they will just annoy the user. If the addresses are
|
// likely they will just annoy the user. If the addresses are
|
||||||
// interesting, the user should consider passing the parameters by
|
// interesting, the user should consider passing the parameters by
|
||||||
// pointers instead.
|
// pointers instead.
|
||||||
EXPECT_EQ("references any of (1-byte object <31>, 1-byte object <32>)",
|
EXPECT_EQ(
|
||||||
|
"references any of (variable1: 1-byte object <31>, variable2: 1-byte "
|
||||||
|
"object <32>)",
|
||||||
Describe(m));
|
Describe(m));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -7920,8 +7920,9 @@ TEST(MatcherPnMacroTest, Works) {
|
|||||||
EXPECT_TRUE(m.Matches(36L));
|
EXPECT_TRUE(m.Matches(36L));
|
||||||
EXPECT_FALSE(m.Matches(15L));
|
EXPECT_FALSE(m.Matches(15L));
|
||||||
|
|
||||||
EXPECT_EQ("is not in closed range (10, 20)", Describe(m));
|
EXPECT_EQ("is not in closed range (low: 10, hi: 20)", Describe(m));
|
||||||
EXPECT_EQ("not (is not in closed range (10, 20))", DescribeNegation(m));
|
EXPECT_EQ("not (is not in closed range (low: 10, hi: 20))",
|
||||||
|
DescribeNegation(m));
|
||||||
EXPECT_EQ("", Explain(m, 36L));
|
EXPECT_EQ("", Explain(m, 36L));
|
||||||
EXPECT_EQ("", Explain(m, 15L));
|
EXPECT_EQ("", Explain(m, 15L));
|
||||||
}
|
}
|
||||||
|
@ -291,7 +291,7 @@ Stack trace:
|
|||||||
[ RUN ] GMockOutputTest.PrintsMatcher
|
[ RUN ] GMockOutputTest.PrintsMatcher
|
||||||
FILE:#: Failure
|
FILE:#: Failure
|
||||||
Value of: (std::pair<int, bool>(42, true))
|
Value of: (std::pair<int, bool>(42, true))
|
||||||
Expected: is pair (is >= 48, true)
|
Expected: is pair (first: is >= 48, second: true)
|
||||||
Actual: (42, true) (of type std::pair<int, bool>)
|
Actual: (42, true) (of type std::pair<int, bool>)
|
||||||
[ FAILED ] GMockOutputTest.PrintsMatcher
|
[ FAILED ] GMockOutputTest.PrintsMatcher
|
||||||
[ FAILED ] GMockOutputTest.UnexpectedCall
|
[ FAILED ] GMockOutputTest.UnexpectedCall
|
||||||
|
Loading…
Reference in New Issue
Block a user