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

NUnit.Framework.Constraints.Numerics

static class Numerics
The Numerics class contains common operations on numeric values.
namespace NUnit.Framework.Constraints { internal static class Numerics { public static bool IsNumericType(object obj); public static bool IsFloatingPointNumeric(object obj); public static bool IsFixedPointNumeric(object obj); public static bool AreEqual(object expected, object actual, ref Tolerance tolerance); public static bool AreEqual<[System.Runtime.CompilerServices.IsUnmanaged] T1, [System.Runtime.CompilerServices.IsUnmanaged] T2>(T1 expected, T2 actual, ref Tolerance tolerance) where T1 : struct, IConvertible where T2 : struct, IConvertible; public static int Compare(object expected, object actual); } }