gpt4 book ai didi

java - 在非常简单的示例中使用 EasyMock.expect() 时编译错误?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:32:01 24 4
gpt4 key购买 nike

我正在尝试一个使用 EasyMock 的非常简单的示例,但是我根本无法构建它。我有以下测试用例:

@Test
public void testSomething()
{
SomeInterface mock = EasyMock.createMock(SomeInterface.class);
SomeBase expected = new DerivesFromSomeBase();

EasyMock.expect(mock.send(expected));
}

但是我在 EasyMock.expect(... 行中收到以下错误:

The method expect(T) in the type EasyMock is not applicable for the arguments (void)

有人能指出我正确的方向吗?我完全迷路了。

最佳答案

如果你想测试 void 方法,在你的 mock 上调用你想测试的方法。然后调用expectLastCall()方法。

这是一个例子:

@Test
public void testSomething()
{
SomeInterface mock = EasyMock.createMock(SomeInterface.class);
SomeBase expected = new DerivesFromSomeBase();

mock.send(expected);

EasyMock.expectLastCall().andAnswer(new IAnswer<Object>() {
public Object answer() {
// do additional assertions here
SomeBase arg1 = (SomeBase) EasyMock.getCurrentArguments()[0];

// return null because of void
return null;
}
});
}

关于java - 在非常简单的示例中使用 EasyMock.expect() 时编译错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7204829/

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