gpt4 book ai didi

c++ - Google Mock 在尝试指定返回值时给出编译错误

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

我正在为我的 C++/Qt 应用程序使用 Google Test 和 Google Mock。直到刚才我尝试这个时,我一直在这个设置上取得了巨大的成功:

QList<AbstractSurface::VertexRow> rowList;
for (unsigned i = 0; i < rows; ++i)
{
AbstractSurface::VertexRow curRow(new AbstractSurface::Vertex[cols]);
for (unsigned j = 0; j < cols; ++j)
{
curRow[j] = AbstractSurface::Vertex();
}
rowList.append(curRow);
}
ON_CALL(surface, numRows_impl()).WillByDefault(Return(rows));
ON_CALL(surface, numColumns_impl()).WillByDefault(Return(cols));
ON_CALL(surface, popAllRows_impl()).WillOnce(Return(rowList));
/* ... */

尝试编译它会导致来自 gcc 的以下错误消息:

../../3DWaveSurface/test/TestWaterfallPresenter.cc: In member function ‘virtual void<unnamed>::WaterfallPresenterTest_CallingPaintGLCallsPaintRowForEachRowInSurface_Test::TestBody()’:
../../3DWaveSurface/test/TestWaterfallPresenter.cc:140:41: error: ‘class testing::internal::OnCallSpec<QList<boost::shared_array<AbstractSurface::Vertex> >()>’ has no member named ‘WillOnce’

如果有帮助,VertexRowtypedef对于 boost::shared_array<Vertex>Vertexstruct使用有效的空构造函数。

这是我为测试编写的错误还是与使用 QList 的不兼容?或 shared_array


解决方案在遵循 VJo 的建议后,我的测试编译并运行但随后崩溃:

Stack trace:
: Failure
Uninteresting mock function call - returning default value.
Function call: popAllRows_impl()
The mock function has no default action set, and its return type has no default value set.
The process "/home/corey/development/3DWaveSurface-build-desktop-debug/test/test" crashed.

因为 popAllRows_impl() 没有默认返回值.我添加了一个默认值:

ON_CALL(surface, popAllRows_impl()).WillByDefault(Return(QList<AbstractSurface::VertexRow>()));

给我的SetUp()一切都很好。正如 VJo 指出的那样,ON_CALL 没有 WillOnce()但是有 EXPECT_CALL我在 cooking 书中错过了这个..

最佳答案

最简单的解决方案是:

EXPECT_CALL(surface, popAllRows_impl()).WillOnce(Return(rowList));

编辑:

ON_CALLWillByDefault,但没有 WillOnce 方法。检查gmock cookbook

关于c++ - Google Mock 在尝试指定返回值时给出编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7560215/

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