<PackageReference Include="NUnit" Version="3.0.0-rc-3" />

WithOperator

public class WithOperator : PrefixOperator
Represents a constraint that simply wraps the constraint provided as an argument, without any further functionality, but which modifies the order of evaluation because of its precedence.
namespace NUnit.Framework.Constraints { public class WithOperator : PrefixOperator { public WithOperator() { left_precedence = 1; right_precedence = 4; } public override IConstraint ApplyPrefix(IConstraint constraint) { return constraint; } } }