如何用void返回类型模拟方法?
我实现了一个观察者模式,但是我无法用Mockito对其进行模拟,因为我不知道如何做。
我试图在互联网上找到一个例子,但没有成功。
我的课看起来像这样:
public class World { List<Listener> listeners; void addListener(Listener item) { listeners.add(item); } void doAction(Action goal,Object obj) { setState("i received"); goal.doAction(obj); setState("i finished"); } private string state; //setter getter state } public class WorldTest implements Listener { @Test public void word{ World w= mock(World.class); w.addListener(this); ... ... } } interface Listener { void doAction(); }
系统不会通过模拟触发。
我想显示上述系统状态。并根据他们做出断言。
看看Mockito API文档。由于链接的文档提到(点#12),你可以使用任何的doThrow(),doAnswer(),doNothing(),doReturn()家人从框架的Mockito的方法来嘲笑无效的方法。
doThrow(),doAnswer(),doNothing(),doReturn()
Mockito
例如,
Mockito.doThrow(new Exception()).when(instance).methodName();
或者如果你想将其与后续行为结合起来,
Mockito.doThrow(new Exception()).doNothing().when(instance).methodName();
假设你要在setState(String s)下面的World类doAnswer中模拟设置器,则代码使用方法来模拟setState。
setState(String s)
World
doAnswer
setState
World mockWorld = mock(World.class); doAnswer(new Answer<Void>() { public Void answer(InvocationOnMock invocation) { Object[] args = invocation.getArguments(); System.out.println("called with arguments: " + Arrays.toString(args)); return null; } }).when(mockWorld).setState(anyString());