gpt4 book ai didi

c# - 单元测试异步事件处理程序

转载 作者:行者123 更新时间:2023-11-30 18:27:10 25 4
gpt4 key购买 nike

[TestInitialize]
public void Initialize()
{
//DO Something
async_eventhandler += the_eventhandler(async_eventhandler);
}

private void async_eventhandler
{
test = test2
// test2 comes from client, after here TestMethod have to start
}

[TestMethod]
public void TestMethod1()
{
Assert.AreEqual("test_test", test);
}

单元测试失败,因为方法是异步的。字符串 test 为“NULL”,因为值 test2 稍后出现。我该如何解决这个问题?

最佳答案

有几个选项:

  1. Assert.AreEqual 之前,您可以插入 Thread.Sleep(MaxTimeoutForEvent)
  2. 使用延迟断言。可以在此 question 中找到示例

附言记住 TestCleanup :)

关于c# - 单元测试异步事件处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27178806/

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