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()範例