mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-04 02:57:08 +02:00
11 lines
251 B
C#
11 lines
251 B
C#
namespace Robust.UnitTesting
|
|
{
|
|
class Is : NUnit.Framework.Is
|
|
{
|
|
public static ApproxEqualityConstraint Approximately(object expected, double? tolerance = null)
|
|
{
|
|
return new(expected, tolerance);
|
|
}
|
|
}
|
|
}
|