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