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