我想从签名看起来像这样的方法中抛出ContentIOException
。
public void putContent(InputStream is) throws ContentIOException.
当我尝试从Mockito中抛出ContentIOException
时:
when(StubbedObject.putContent(contentStream)).thenThrow(ContentIOException.class);
我收到以下编译错误:
The method when(T) in the type Mockito is not applicable for the arguments (void).
我做错了什么?
答案 0 :(得分:44)
看看this reference in the official API。您希望颠倒调用方式并调整参数,因为这是一个void
方法,您希望抛出异常。
doThrow(new ContentIOException()).when(StubbedObject).putContent(contentStream);
答案 1 :(得分:0)
您可以使用以下代码
when(testRepositoryMock.findOne(123)).thenThrow(new NullPointerException());
然后你可以检查你的逻辑
String erroResponse= service.testMethodForResponse(accountNum);
JSONObject jsonObj = new JSONObject(erroResponse);
String _acNo = jsonObj.getString("accountNum");
assertEquals(accountNum, _acNo);
}
如果您使用的是Spring引导,那么请添加类
@SpringBootTest
@RunWith(MockitoJUnitRunner.class)
在课堂内你需要注入对象
@InjectMocks //actual object you want to get test coverage
private TestService testService;
@Mock //Mock object which call by actual object for mocking
private testRepository testRepositoryMock;