在specs2中,我们可以模拟一个方法并让它抛出异常:
class Hello {
def say():Unit = println("Hello, world")
}
val hello = mock[Hello]
hello.say() throws new RuntimeException("something wrong")
但是如何让它第一次抛出,然后总是什么都不做?
答案 0 :(得分:2)
这实际上是一个模拟问题,而不是specs2问题。 来自mockito文档:
when(mock.someMethod("some arg"))
.thenThrow(new RuntimeException())
.thenReturn("foo");
替代,短版本的连续存根:
when(mock.someMethod("some arg"))
.thenReturn("one", "two", "three");
答案 1 :(得分:0)
doThrow(new RuntimeException("something wrong")).doNothing().when(hello).say()