标签: exception-handling nunit
每当NUnit测试在执行期间失败时(即不是在使用Assert.*时),我想记录其他信息(我正在编写Web测试,我对此特别感兴趣网页的当前DOM)。
Assert.*
如何在NUnit中指定一个全局异常处理程序,它能够记录NoSuchElementException的其他信息 - 测试当然应该失败。
NoSuchElementException
答案 0 :(得分:1)
您可以编写一个记录信息的NUnit事件侦听器插件。请参阅http://www.nunit.org/index.php?p=nunitAddins&r=2.6.3和http://www.nunit.org/index.php?p=eventListeners&r=2.6.3。有关教程,请参阅https://www.simple-talk.com/dotnet/.net-tools/testing-times-ahead-extending-nunit/。