NUnit.Framework.Constraints.CollectionConstraint
CollectionConstraint is the abstract base class for
constraints that operate on collections.
namespace NUnit.Framework.Constraints
{
public abstract class CollectionConstraint : Constraint
{
protected CollectionConstraint();
protected CollectionConstraint(object arg);
protected static bool IsEmpty(IEnumerable enumerable);
protected abstract bool Matches(IEnumerable collection);
}
}