- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个具有接受可变参数的方法的类:
class MyClass
{
public:
virtual void myprint(const char* format, ...) = 0;
};
class Mock : public MyClass
{
public:
MOCK_METHOD1(myprint, void (const char* format, ...));
}
error: 'Result' in 'struct testing::internal::Function<void(const char*, ...)>' does not name a type
MOCK_METHOD1(myprint, void (const char* format, ...));
^
error: incomplete type 'testing::internal::Function<void(const char*, ...)>' used in nested name specifier
error: incomplete type 'testing::internal::Function<void(const char*, ...)>' used in nested name specifier
error: template argument 1 is invalid
error: field 'gmock1_print_15' has incomplete type 'testing::internal::FunctionMocker<void(const char*, ...)>'
最佳答案
不幸的是,您cannot directly mock a variadic function in Gmock :
You cannot mock a variadic function (i.e. a function taking ellipsis (...) arguments) directly in Google Mock.
The problem is that in general, there is no way for a mock object to know how many arguments are passed to the variadic method, and what the arguments' types are. Only the author of the base class knows the protocol, and we cannot look into his head.
Therefore, to mock such a function, the user must teach the mock object how to figure out the number of arguments and their types. One way to do it is to provide overloaded versions of the function.
Ellipsis arguments are inherited from C and not really a C++ feature. They are unsafe to use and don't work with arguments that have constructors or destructors. Therefore we recommend to avoid them in C++ as much as possible.
format
参数以及任何可变参数以创建单个
message
字符串,然后模拟一个接受
message
的函数作为一个单一的论点。
关于c++ - GMOCK 一种接受可变参数的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46470289/
我在我的项目中使用 gmock,我遇到了为模拟函数设置自定义引用变量的问题。 假设我有一个类如下: class XXXClient { public: void QueryXXX(const
我正在尝试将 googlemock 集成到我的测试中。我已经在 googletest 上成功构建并运行了测试,现在我也在尝试逐步将 gmock 功能添加到测试中,但是我遇到了一个我完全不明白的编译错误
我正在进行一些测试,以便重构一个旧的 C++ 项目。我正在尝试使用 gmock 匹配器 ElementsAreArray() 来匹配两个数组。 EXPECT_THAT(value_instance.v
我正在尝试为向量编写测试。 对于 STL 容器,我尝试过: EXPECT_THAT(float_vec1, ElementsAreArray(float_vec2)); 但是我需要插入一个边距。 有没
我有一个具有接受可变参数的方法的类: class MyClass { public: virtual void myprint(const char* format, ...) = 0; }; 我试图
我想做这样的事情: EXPECT_CALL(*mock, method(5)).WillOnce(Return(arg1 * 2)); 其中 arg1 应等于被调用方法的第一个参数。有没有一种方法可以
我正在尝试模拟IAudioMeterInformation Windows API(我只需要GetPeakValue()方法)。 我收到一个错误: Error C2259 'AudioMeterInf
我使用GTest遇到了无法理解的行为。 问题很容易。我在叫sut方法。该方法调用StrictMock对象方法。我对该方法调用没有任何期望。根据GTest规范,此类测试应因“无趣的模拟函数调用”而失败。
我想做这样的事情: EXPECT_CALL(*mock, method(5)).WillOnce(Return(arg1 * 2)); 其中 arg1 应等于被调用方法的第一个参数。有没有一种方法可以
我有一个类,成员数组类型为int // Class Defenition class Foo { int array[5]; // ... Other Memebers } 另一个
我有一个类似这样的测试: #include using namespace ::testing; class IMyInterface { public: virtual ~IMyInter
我正在为一个类编写 GMOCK 测试用例: class A{ .. void Text() .. }; 现在A类的一个成员方法中嵌入了一个B类类型的对象,也引用了静态成员方法: void A::Tex
当我尝试像下面那样实现 GMOCK 方法时出现编译错误,但是当我删除它时代码和 MOCK 类工作正常: MOCK_METHOD2(myfunc, void (std::shared_ptr, std:
示例代码: struct MyFixture: public ::testing::Test { }; template struct MyFixtureWithParam: public MyFi
在 gmock 中是否有匹配类型而不是值的方法?该类是这样的: struct Blob { template bool is(); // if blob holds data of type
我刚开始用 gtest 和 gmock 做测试,然后我被一个问题阻止了。问题是这样的, 首先,我有一个这样的类, class Foo { public: std::vector& GetVec
我有一个测试对象,我想在真实对象中不需要的方法上调用 EXPECT_CALL,是否可以模拟这种未定义的新方法? struct MockObject { MOCK_METHOD2(onRecv,
我有以下模拟方法: MOCK_METHOD1(send, void(const std::vector& data)); 如何检查是否使用特定参数调用该方法,例如 std::vector vec{1,
我看到了一些关于 gmock 的示例代码, #include "gmock/gmock.h" #include "gtest/gtest.h" #include #include class Mo
这个问题在这里已经有了答案: Possible memory leak without a virtual destructor? (3 个答案) 关闭 5 年前。 代码 class A { pu
我是一名优秀的程序员,十分优秀!