// 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 System; using System.Linq; using Xunit; namespace Tests { public class SelectMany : Tests { [Fact] public void SelectMany_Arguments() { AssertThrows(() => EnumerableEx.SelectMany(null, new[] { 1 })); AssertThrows(() => EnumerableEx.SelectMany(new[] { 1 }, null)); } [Fact] public void SelectMany1() { var res = new[] { 1, 2 }.SelectMany(new[] { 'a', 'b', 'c' }).ToList(); Assert.True(Enumerable.SequenceEqual(res, new[] { 'a', 'b', 'c', 'a', 'b', 'c' })); } } }