I was trying to use `answers ManyAnswersAnswer` with a `listOf(ThrowingAnswer(myException), Constant...
p
I was trying to use
answers ManyAnswersAnswer
with a
listOf(ThrowingAnswer(myException), ConstantAnswer(myConstant))
but it doesn't seem to like having 2 types of answers in there
a
Copy code
every { myThing.doIt() }.throws(Exception("")
.andTehnReturns(42)