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