我想显示在 scala 测试中抛出的异常消息。
" iWillThrowCustomException Method Failure test.
" should "Fail, Reason: Reason for failing. " in {
evaluating {
iWillThrowCustomException();
} should produce [CustomException]
}
如果 CustomExeption 会为不同的输入抛出不同类型的消息,比如说
(对于 -ve 金额 - 金额小于零,对于金额中的字符 - 无效金额),
如何显示在块中抛出的消息,因为它将通过 CustomException 并且它将显示测试成功,但是对于哪个 senario 它已经抛出了错误