检查异步方法的 Received() 调用

2023-12-29

当我运行以下代码时:

[Test]
public async Task Can_Test_Update()
{
    var response = await _controller.UpdateAsync(Guid.NewGuid());
    response.Valid.Should().BeTrue();

    _commands.Received().UpdateAsync(
        Arg.Is<Something>(
            l => l.Status == Status.Updated)); 
}

如果我添加“await“ 之前的 ”_commands.Received().UpdateAsync”,它抛出一个空引用异常。我怎样才能阻止这种情况发生,或者是await不必要?


我找到了答案here https://gist.github.com/HEskandari/8235481.

Received.InOrder(async () =>
{
    await _Commands.UpdateAsync(Arg.Is<Lobby>(l => l.Status == Status.Updated));
});
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

检查异步方法的 Received() 调用 的相关文章

随机推荐