gpt4 book ai didi

c++ - gmock : Doing custom check that can fail

转载 作者:行者123 更新时间:2023-11-30 00:58:57 25 4
gpt4 key购买 nike

我在我的单元测试中使用了谷歌模拟库,我正在尝试进行可能会失败的自定义检查。

下一个例子演示了我正在尝试做的事情:

struct Base
{
};
struct Derived : Base
{
int a;
};

struct MockClass
{
MOCK_METHOD1( Send, void ( Base & ) );
};

现在我想检查假对象是否在 Send 方法中传递了 Derived 类型的对象,以及值 a。那么,该怎么做呢?

我的想法是使用 Invoke 并将调用转发给某个函数,该函数将从 Base 动态转换为 Derived,并检查值。如果类型不是预期的,则抛出异常。像这样:

void TestCall( Base &obj )
{
Derived *realObj = dynamic_cast< Derived * >( &obj );
if ( NULL == realObj )
{
throw 123;
}
}

然后像这样测试:

MockClass mockObj;
EXPECT_CALL( mockObj, Send(_) )
.WillOnce( Invoke( &TestCall ) );

这行吗?或者有更好的方法吗?

最佳答案

你可以定义一个custom matcher同时验证参数的类型和值:

MATCHER_P(IsDerivedAnEqual, a, "") {
Derived* derived_arg = dynamic_cast<Derived*>(&arg);
return derived_arg != NULL && derived_arg->a == a;
}

EXPECT_CALL(mock_obj, Send(IsDerivedAndEqual(5));

您还可以使用 composite matchers构建更复杂的条件。

您对 WillOnce() 表达式的调用是操作。只有当调用符合您设置的期望时才会调用它们,并且应该模仿外部依赖项在调用时会执行的操作。用它们来设定期望是行不通的。

关于c++ - gmock : Doing custom check that can fail,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5272670/

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