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?
public async Task SomeTest()
– BoccheriniSomeTest()
superficially awaitable.Assert.All()
still behaves the same way. – Mitchellmitchem