gpt4 book ai didi

c++ - 使用 Gtest 如何在 ON_CALL 中返回不同的值?

转载 作者:行者123 更新时间:2023-11-30 05:40:33 33 4
gpt4 key购买 nike

是否可以使用 ON_CALL WillByDefault 返回不同的值?例如

class FooMock {
MOCK_METHOD0(foo, int());
}

void bar()
{
FooMock mock;
int f = 0;
ON_CALL(mock, foo()).WillByDefault(Return(f));
EXPECT_TRUE(f==mock.foo()); // this is correct
f++;
EXPECT_TRUE(f==mock.foo()); // it is failed, because ON_CALL returns f=0
}

是否存在某种方法可以返回变量的新值?

最佳答案

是的,有办法,将您的代码更改为:

ON_CALL(mock, foo())
.WillByDefault(ReturnPointee(&f));

阅读有关 ReturnPointee 的更多信息 in this link (在从模拟方法中返回实时值部分)

关于c++ - 使用 Gtest 如何在 ON_CALL 中返回不同的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31567766/

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