<PackageReference Include="NUnit" Version="3.0.1" />

List

public class List
The List class is a helper class with properties and methods that supply a number of constraints used with lists and collections.
using System.Collections; namespace NUnit.Framework { public class List { public static ListMapper Map(ICollection actual) { return new ListMapper(actual); } } }