51Testing软件测试论坛 's Archiver
软件测试论坛
›
[测试积点任务]
› 想要测试某一个方法能否抛出自己想要的异常怎么写Assert.ThrowsException
测试积点老人
发表于 2019-8-29 10:28:59
想要测试某一个方法能否抛出自己想要的异常怎么写Assert.ThrowsException
customer.Setup(p => p.ShowException(string.Empty)).Throws(new Exception("参数不能为空!"));
Assert.ThrowsException<Exception>(()=>customer.Object.ShowException(""));这个代码显示异常未操作为什么
页:
[1]
查看完整版本:
想要测试某一个方法能否抛出自己想要的异常怎么写Assert.ThrowsException