using System; using System.Collections.Generic; using System.Linq; using Xunit; using Xunit.Abstractions; // ReSharper disable once CheckNamespace namespace EntityFrameworkCore.Jet.FunctionalTests.TestUtilities.Xunit; public class AscendingTestCollectionOrderer : ITestCollectionOrderer { public IEnumerable OrderTestCollections(IEnumerable testCollections) { var orderTestCollections = testCollections.OrderBy(c => c.DisplayName, StringComparer.OrdinalIgnoreCase) .ToList(); return orderTestCollections; } }