NoneOperator
Represents a constraint that succeeds if none of the
members of a collection match a base constraint.
namespace NUnit.Framework.Constraints
{
public class NoneOperator : CollectionOperator
{
public override IConstraint ApplyPrefix(IConstraint constraint)
{
return new NoItemConstraint(constraint);
}
}
}