我有一个方法,看起来像这样:
private async void DoStuff(long idToLookUp)
{
IOrder order = await orderService.LookUpIdAsync(idToLookUp);
// Close the search
IsSearchShowing = false;
}
//Other stuff in case you want to see it
public DelegateCommand<long> DoLookupCommand{ get; set; }
ViewModel()
{
DoLookupCommand= new DelegateCommand<long>(DoStuff);
}
我尝试这样对它进行单元测试:
[TestMethod]
public void TestDoStuff()
{
//+ Arrange
myViewModel.IsSearchShowing = true;
// container is my Unity container and it setup in the init method.
container.Resolve<IOrderService>().Returns(orderService);
orderService = Substitute.For<IOrderService>();
orderService.LookUpIdAsync(Arg.Any<long>())
.Returns(new Task<IOrder>(() => null));
//+ Act
myViewModel.DoLookupCommand.Execute(0);
//+ Assert
myViewModel.IsSearchShowing.Should().BeFalse();
}
在完成模拟的 LookUpIdAsync 之前调用我的断言。在我的正常代码中,这正是我想要的。但是对于我的单元测试,我不希望出现这种情况。
我正在从使用 BackoundWorker 转换到 Async/wait。对于后台工作者,这个操作是正确的,因为我可以等待后台工作者完成。
但似乎没有办法等待一个异步 void 方法..。
如何对此方法进行单元测试?