gpt4 book ai didi

unit-testing - 使用 xUnit 单元测试异常消息

转载 作者:行者123 更新时间:2023-12-02 02:16:00 25 4
gpt4 key购买 nike

我目前正在将我的 MsTest 单元测试转换为 xUnit。使用 xUnit,有没有办法测试异常消息?测试异常消息而不是仅测试异常类型是否正确?

最佳答案

我认为测试异常类型和消息是正确的。两者在 xUnit 中都很容易:

var exception = Assert.Throws<AuthenticationException>(() => DoSomething());
Assert.Equal(message, exception.Message);

关于unit-testing - 使用 xUnit 单元测试异常消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5376605/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com