NUnit.Framework.Constraints.ReusableConstraint
ReusableConstraint wraps a constraint expression after
resolving it so that it can be reused consistently.
namespace NUnit.Framework.Constraints
{
public class ReusableConstraint : IResolveConstraint
{
public ReusableConstraint(IResolveConstraint c);
public static implicit operator ReusableConstraint(Constraint c);
public IConstraint Resolve();
}
}