Files
RobustToolbox/Robust.UnitTesting/Is.cs
2022-02-05 19:31:58 +01:00

11 lines
258 B
C#

namespace Robust.UnitTesting
{
sealed class Is : NUnit.Framework.Is
{
public static ApproxEqualityConstraint Approximately(object expected, double? tolerance = null)
{
return new(expected, tolerance);
}
}
}