gpt4 book ai didi

c++ - 对于 double 或 float 的总和,EXPECT_EQ 出错

转载 作者:IT老高 更新时间:2023-10-28 22:16:29 26 4
gpt4 key购买 nike

我无法理解为什么在对双数或 float 求和的情况下测试用例会失败。它适用于整数数据类型。

//simple_method.h中的方法

double sum ( double a, double b)
{
double res = a+b;
return res;
}

//该方法的测试用例

TEST(simpleSum, sumOfFloat)
{
EXPECT_EQ(4.56, sum(0.56, 4.0));
}

//输出是

Running main() from gtest_main.cc
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from simpleSum
[ RUN ] simpleSum.sumOfFloat
/home/pcadmin/Desktop/so/so3/simple_method_test.cpp:7: Failure
Value of: sum(0.56, 4.0)
Actual: 4.56
Expected: 4.56
[ FAILED ] simpleSum.sumOfFloat (0 ms)
[----------] 1 test from simpleSum (0 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (0 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 1 test, listed below:
[ FAILED ] simpleSum.sumOfFloat

1 FAILED TEST

最佳答案

使用 EXPECT_NEARDoubleEq匹配器代替。浮点运算可能导致 rounding errors这使得结果略有不同。

关于c++ - 对于 double 或 float 的总和,EXPECT_EQ 出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15128510/

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