gpt4 book ai didi

c++ - 仅在 ASSERT_STREQ 失败时显示差异

转载 作者:行者123 更新时间:2023-11-30 03:22:55 30 4
gpt4 key购买 nike

当 googletest 的 ASSERT_STREQ 失败时,它会打印输入字符串及其差异。我可以让它只打印差异吗?

最佳答案

仅使用 GTest 功能?据我所知不是。

但是没有什么能阻止您编写自己的比较函数,即

bool stringsMatch(std::string oneString, std::string otherString)
{
//...
};

std::string getDifferencesBetween(std::string oneString, std::string otherString)
{
//...
};

然后写

//...
if (!stringsMatch(actualString, expectedString))
{
FAIL() << getDifferencesBetween(actualString, expectedString);
}
//...

关于c++ - 仅在 ASSERT_STREQ 失败时显示差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50762372/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com