22

I have this example test using xUnit:

    [Fact]
    public void SomeTest()
    {
        Assert.All(itemList, async item=>
                {
                    var i = await Something(item);
                    Assert.Equal(item,i);
                });
    }

Is there a good solution to make the whole test async/awaitable?

J2ghz
  • 632
  • 1
  • 7
  • 20

2 Answers2

32

In xUnit 2.4.2 and above, use Assert.AllAsync. Otherwise, you can use Task.WhenAll:

[Fact]
public async Task SomeTest()
{
    var itemList = ...;
    var results = await Task.WhenAll(itemList.Select(async item =>
    {
        var i = await Something(item);
        return i;
    }));
    Assert.All(results, result => Assert.Equal(1, result));
}
Eli Arbel
  • 22,391
  • 3
  • 45
  • 71
3

As for 2023, accepted answer is no longer true, xunit team added Assert.AllAsync: https://github.com/xunit/xunit/discussions/2498

Mr Patience
  • 1,564
  • 16
  • 30