想要测试某一个方法能否抛出自己想要的异常怎么写Assert.ThrowsException
customer.Setup(p => p.ShowException(string.Empty)).Throws(new Exception("参数不能为空!"));Assert.ThrowsException<Exception>(()=>customer.Object.ShowException(""));这个代码显示异常未操作为什么?
代码问题 确认造成了参数异常 验证函数执行时造成的异常!
页:
[1]