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

Env

public class Env
Env is a static class that provides some of the features of System.Environment that are not available under all runtimes
using System; namespace NUnit { public class Env { public static readonly string NewLine = Environment.NewLine; public static string DocumentFolder = Environment.GetFolderPath(Environment.SpecialFolder.Personal); public static readonly string DefaultWorkDirectory = Environment.CurrentDirectory; } }