我怎么能用mockito停止调用方法?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我怎么能用mockito停止调用方法?相关的知识,希望对你有一定的参考价值。
当我从Test类调用函数方法时,我希望executeSol方法不运行,因为它会导致我的错误。
public String funciones(String arguments){
//Many operations . . .
animalInterface.executeSol(integer id, String msg); <-- void
return soluciones;
}
答案
看看这个链接,https://gist.github.com/mariuszs/7489190有一个关于如何测试异常的很好的例子。这是之前被问到的。 Mockito How to mock and assert a thrown exception?
以上是关于我怎么能用mockito停止调用方法?的主要内容,如果未能解决你的问题,请参考以下文章