// 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.Text; using System.Collections.Generic; using System.Linq; using Xunit; namespace Tests { public partial class Tests { [Fact] public void IsEmtpy_Arguments() { AssertThrows(() => EnumerableEx.IsEmpty(null)); } [Fact] public void IsEmpty_Empty() { Assert.True(Enumerable.Empty().IsEmpty()); } [Fact] public void IsEmpty_NonEmpty() { Assert.False(new[] { 1 }.IsEmpty()); } [Fact] public void Min_Arguments() { AssertThrows(() => EnumerableEx.Min(null, Comparer.Default)); AssertThrows(() => EnumerableEx.Min(new[] { 1 }, null)); } [Fact] public void Min() { Assert.Equal(3, new[] { 5, 3, 7 }.Min(new Mod3Comparer())); } class Mod3Comparer : IComparer { public int Compare(int x, int y) { return Comparer.Default.Compare(x % 3, y % 3); } } [Fact] public void MinBy_Arguments() { AssertThrows(() => EnumerableEx.MinBy(null, (int x) => x)); AssertThrows(() => EnumerableEx.MinBy(new[] { 1 }, default(Func))); AssertThrows(() => EnumerableEx.MinBy(null, (int x) => x, Comparer.Default)); AssertThrows(() => EnumerableEx.MinBy(new[] { 1 }, default(Func), Comparer.Default)); AssertThrows(() => EnumerableEx.MinBy(new[] { 1 }, (int x) => x, null)); } [Fact] public void MinBy() { var res = new[] { 2, 5, 0, 7, 4, 3, 6, 2, 1 }.MinBy(x => x % 3); Assert.True(res.SequenceEqual(new[] { 0, 3, 6 })); } [Fact] public void MinBy_Empty() { AssertThrows(() => Enumerable.Empty().MinBy(x => x)); } [Fact] public void Max_Arguments() { AssertThrows(() => EnumerableEx.Max(null, Comparer.Default)); AssertThrows(() => EnumerableEx.Max(new[] { 1 }, null)); } [Fact] public void Max() { Assert.Equal(5, new[] { 2, 5, 3, 7 }.Max(new Mod7Comparer())); } class Mod7Comparer : IComparer { public int Compare(int x, int y) { return Comparer.Default.Compare(x % 7, y % 7); } } [Fact] public void MaxBy_Arguments() { AssertThrows(() => EnumerableEx.MaxBy(null, (int x) => x)); AssertThrows(() => EnumerableEx.MaxBy(new[] { 1 }, default(Func))); AssertThrows(() => EnumerableEx.MaxBy(null, (int x) => x, Comparer.Default)); AssertThrows(() => EnumerableEx.MaxBy(new[] { 1 }, default(Func), Comparer.Default)); AssertThrows(() => EnumerableEx.MaxBy(new[] { 1 }, (int x) => x, null)); } [Fact] public void MaxBy() { var res = new[] { 2, 5, 0, 7, 4, 3, 6, 2, 1 }.MaxBy(x => x % 3); Assert.True(res.SequenceEqual(new[] { 2, 5, 2 })); } [Fact] public void MaxBy_Empty() { AssertThrows(() => Enumerable.Empty().MaxBy(x => x)); } } }