Class CollectionTally.CollectionTallyResult
- Namespace
- NUnit.Framework.Constraints
- Assembly
- nunit.framework.dll
The result of a CollectionTally.
public sealed class CollectionTally.CollectionTallyResult
- Inheritance
-
CollectionTally.CollectionTallyResult
- Inherited Members
Constructors
CollectionTallyResult(List<object>, List<object>)
Initializes a new instance of the CollectionTally.CollectionTallyResult class with the given fields.
public CollectionTallyResult(List<object> missingItems, List<object> extraItems)
Parameters
Properties
ExtraItems
Items that were not in the expected collection.
public List<object> ExtraItems { get; }
Property Value
MissingItems
Items that were not accounted for in the expected collection.
public List<object> MissingItems { get; }