| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | // Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the Apache 2.0 License.// See the LICENSE file in the project root for more information. using System;using System.Collections.Generic;using System.Text;using System.Linq;using Xunit;namespace Tests{    public class IfTest : Tests    {        [Fact]        public void If_Arguments()        {            AssertThrows<ArgumentNullException>(() => EnumerableEx.If<int>(null, new[] { 1 }));            AssertThrows<ArgumentNullException>(() => EnumerableEx.If<int>(() => true, null));            AssertThrows<ArgumentNullException>(() => EnumerableEx.If<int>(null, new[] { 1 }, new[] { 1 }));            AssertThrows<ArgumentNullException>(() => EnumerableEx.If<int>(() => true, null, new[] { 1 }));            AssertThrows<ArgumentNullException>(() => EnumerableEx.If<int>(() => true, new[] { 1 }, null));        }        [Fact]        public void If1()        {            var x = 5;            var res = EnumerableEx.If(() => x > 0, new[] { +1 }, new[] { -1 });            Assert.Equal(+1, res.Single());            x = -x;            Assert.Equal(-1, res.Single());        }        [Fact]        public void If2()        {            var x = 5;            var res = EnumerableEx.If(() => x > 0, new[] { +1 });            Assert.Equal(+1, res.Single());            x = -x;            Assert.True(res.IsEmpty());        }    }}
 |