EasyMock验证行为 - EasyMock教程

EasyMock提供了一个检查被使用或不使用verify()方法,请看下面的代码片段。

//activate the mock
EasyMock.replay(calcService);    

//test the add functionality
Assert.assertEquals(mathApplication.add(10.0, 20.0),30.0,0);

//verify call to calcService is made or not
EasyMock.verify(calcService);

不使用EasyMock.Verify()示例

使用 EasyMock.Verify()示例