using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IntegrationTests.Utils { internal static class Extensions { public static IEnumerable EmptyIfNull(this IEnumerable en) => en == null ? Enumerable.Empty() : en; } }