WithOperator
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;
}
}
}