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

Guard

static class Guard
Class used to guard against unexpected argument values or operations by throwing an appropriate exception.
using NUnit.Compatibility; using NUnit.Framework.Internal; using System; using System.Reflection; namespace NUnit.Framework { internal static class Guard { public static void ArgumentNotNull(object value, string name) { if (value == null) throw new ArgumentNullException(name, "Argument " + name + " must not be null"); } public static void ArgumentNotNullOrEmpty(string value, string name) { ArgumentNotNull(value, name); if (value == string.Empty) throw new ArgumentException("Argument " + name + " must not be the empty string", name); } public static void ArgumentInRange(bool condition, string message, string paramName) { if (!condition) throw new ArgumentOutOfRangeException(paramName, message); } public static void ArgumentValid(bool condition, string message, string paramName) { if (!condition) throw new ArgumentException(message, paramName); } public static void OperationValid(bool condition, string message) { if (!condition) throw new InvalidOperationException(message); } public static void ArgumentNotAsyncVoid(Delegate delegate, string paramName) { ArgumentNotAsyncVoid(TypeExtensions.GetMethodInfo(delegate), paramName); } public static void ArgumentNotAsyncVoid(MethodInfo method, string paramName) { if ((object)method.ReturnType != typeof(void) || !AsyncToSyncAdapter.IsAsyncOperation(method)) return; throw new ArgumentException("Async void methods are not supported. Please use 'async Task' instead.", paramName); } } }