// 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.Collections.Generic; using System.Linq; using Xunit; namespace Tests { public class MinBy : Tests { #if !NET6_0_OR_GREATER [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 MinBy1() { 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)); } #endif } }