12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT License.
- // See the LICENSE file in the project root for more information.
- using Xunit;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Tests
- {
- public partial class AsyncTests
- {
- [Fact]
- public async Task ExceptionHandling_ShouldThrowUnwrappedException()
- {
- try
- {
- var asyncEnumerable = AsyncEnumerable.ToAsyncEnumerable(GetEnumerableWithError());
- await asyncEnumerable.ToArrayAsync();
- }
- catch (AggregateException)
- {
- Assert.Fail("AggregateException has been thrown instead of InvalidOperationException");
- }
- catch (InvalidOperationException)
- {
- }
- }
- private IEnumerable<int> GetEnumerableWithError()
- {
- yield return 5;
- throw new InvalidOperationException();
- }
- [Fact]
- public async Task ExceptionHandling_ShouldThrowUnwrappedException2()
- {
- try
- {
- var asyncEnumerable = AsyncEnumerableEx.Generate(15, (x) => { throw new InvalidOperationException(); }, (x) => { return 20; }, (x) => { return 2; });
- await asyncEnumerable.ToArrayAsync();
- }
- catch (AggregateException)
- {
- Assert.Fail("AggregateException has been thrown instead of InvalidOperationException");
- }
- catch (InvalidOperationException)
- {
- }
- }
- }
- }
|