gpt4 book ai didi

c++ - Google mock - 至少是多种期望中的一种

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:47:31 28 4
gpt4 key购买 nike

我正在使用 Google Mock 为外部 API 指定兼容层。在外部 API 中,有多种方法可以执行某些操作,因此我想指定满足一组期望中的至少一个(或最好是一个)期望。在伪代码中,这就是我想要做的:

Expectation e1 = EXPECT_CALL(API, doFoo(...));
Expectation e2 = EXPECT_CALL(API, doFooAndBar(...));
EXPECT_ONE_OF(e1, e2);
wrapper.foo(...);

使用 Google Mock 可以做到这一点吗?

最佳答案

这有两种方式:

  1. 使用自定义方法执行器 - 创建一个类,使用相同的方法。然后使用 Invoke() 将调用传递给该对象
  2. 使用部分顺序调用 - 在不同的序列中创建不同的期望,如解释的那样 here

使用自定义方法执行器

像这样:

struct MethodsTracker {
void doFoo( int ) {
++ n;
}
void doFooAndBar( int, int ) {
++ n;
}
int n;
};

TEST_F( MyTest, CheckItInvokesAtLeastOne ) {
MethodsTracker tracker;
Api obj( mock );

EXPECT_CALL( mock, doFoo(_) ).Times( AnyNumber() ).WillByDefault( Invoke( &tracker, &MethodsTracker::doFoo ) );
EXPECT_CALL( mock, doFooAndBar(_,_) ).Times( AnyNumber() ).WillByDefault( Invoke( &tracker, &MethodsTracker::doFooAndBar ) );

obj.executeCall();

// at least one
EXPECT_GE( tracker.n, 1 );
}

使用偏序调用

TEST_F( MyTest, CheckItInvokesAtLeastOne ) {
MethodsTracker tracker;
Api obj( mock );

Sequence s1, s2, s3, s4;

EXPECT_CALL(mock, doFoo(_)).InSequence(s1).Times(AtLeast(1));
EXPECT_CALL(mock, doFooAndBar(_,_)).InSequence(s1).Times(AtLeast(0));

EXPECT_CALL(mock, doFoo(_)).InSequence(s2).Times(AtLeast(0));
EXPECT_CALL(mock, doFooAndBar(_,_)).InSequence(s2).Times(AtLeast(1));

EXPECT_CALL(mock, doFooAndBar(_,_)).InSequence(s3).Times(AtLeast(0));
EXPECT_CALL(mock, doFoo(_)).InSequence(s3).Times(AtLeast(1));

EXPECT_CALL(mock, doFooAndBar(_,_)).InSequence(s4).Times(AtLeast(1));
EXPECT_CALL(mock, doFoo(_)).InSequence(s4).Times(AtLeast(0));

obj.executeCall();
}

关于c++ - Google mock - 至少是多种期望中的一种,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32249547/

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