gpt4 book ai didi

c# - 我可以在 Rhino Mocks 中设置一条用户友好的消息以在 AssertWasCalled 失败时显示吗?

转载 作者:行者123 更新时间:2023-11-30 22:32:40 25 4
gpt4 key购买 nike

我能否在模拟对象上编写以下断言,以在断言失败时显示“未使用正确参数调用或什至未调用 UnBookFlight”的方式?

mockBookingService
.AssertWasCalled(ms=>ms.UnBookFlight(Arg<DateTime>.Is.Equal(dummyDate)));

最佳答案

根据 this article ,您可以在传递给 AssertWasCalled() 的方法选项中指定一条消息:

mockBookingService.AssertWasCalled(
ms => ms.UnBookFlight(Arg<DateTime>.Is.Equal(dummyDate)),
options => {
options.Message("UnBookFlight was not called with proper parameters or not even called");
});

关于c# - 我可以在 Rhino Mocks 中设置一条用户友好的消息以在 AssertWasCalled 失败时显示吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8653163/

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