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

GreaterThanOrEqualConstraint

Tests whether a value is greater than or equal to the value supplied to its constructor
namespace NUnit.Framework.Constraints { public class GreaterThanOrEqualConstraint : ComparisonConstraint { public GreaterThanOrEqualConstraint(object expected) : base(expected, false, true, true, "greater than or equal to") { } } }