master
hadashiA 2023-09-07 17:43:40 +09:00
parent 2d674999f0
commit bc27f6c0d8
1 changed files with 0 additions and 9 deletions

View File

@ -21,15 +21,6 @@ namespace NetCoreTests
});
}
[Fact]
public async Task PropagateWhenAllException()
{
await Assert.ThrowsAsync<InvalidOperationException>(async () =>
{
await Task.WhenAll(ThrowAsync(), ThrowAsync(), ThrowAsync()).AsUniTask();
});
}
async Task ThrowAsync()
{
throw new InvalidOperationException();