在 gmock 中将自定义值设置为无效指针
Setting custom value to void pointer in gmock
我正在使用 Google Mock 对我的 C 实现进行单元测试。对于我的模拟函数之一,out 参数被定义为 void 指针。模拟函数如下:
MOCK_METHOD3(file_read, int(const char *file_name, const char *type_name, void *data_p));
根据How to set a value to void * argument of a mock method in google mock testing?
我创建了一个 ACTION_P
ACTION_P(SetArg2ToMCValue, value) { reinterpret_cast<void *>(arg2) = value; }
在我的测试代码中,我将默认值设置为在 ACTION_P 中转换为 void 的参数和我的期望值
struct.a = 5.0;
struct.b = 15.0;
//Expectations
EXPECT_CALL(*libfile_mock, file_read(_,_,_)).WillOnce(DoAll(SetArg2ToMCValue(&struct), Return(0)));
当测试为运行时,我没有看到自定义值,我设置为结构。相反,我看到了 0。如何将值设置为在 Google Mock 中也是空指针的输出参数?
经过一些搜索,我发现 arg2 已经是一个空指针,因此我需要将它转换为 ACTION_P 中的结构类型。
ACTION_P(SetArg2ToMCValue, value) { *reinterpret_cast<struct *>(arg2) = *value; }
这有效。
我正在使用 Google Mock 对我的 C 实现进行单元测试。对于我的模拟函数之一,out 参数被定义为 void 指针。模拟函数如下:
MOCK_METHOD3(file_read, int(const char *file_name, const char *type_name, void *data_p));
根据How to set a value to void * argument of a mock method in google mock testing?
我创建了一个 ACTION_P
ACTION_P(SetArg2ToMCValue, value) { reinterpret_cast<void *>(arg2) = value; }
在我的测试代码中,我将默认值设置为在 ACTION_P 中转换为 void 的参数和我的期望值
struct.a = 5.0;
struct.b = 15.0;
//Expectations
EXPECT_CALL(*libfile_mock, file_read(_,_,_)).WillOnce(DoAll(SetArg2ToMCValue(&struct), Return(0)));
当测试为运行时,我没有看到自定义值,我设置为结构。相反,我看到了 0。如何将值设置为在 Google Mock 中也是空指针的输出参数?
经过一些搜索,我发现 arg2 已经是一个空指针,因此我需要将它转换为 ACTION_P 中的结构类型。
ACTION_P(SetArg2ToMCValue, value) { *reinterpret_cast<struct *>(arg2) = *value; }
这有效。