|
Joutsen v0.5.0+12-g5dd5f7e
|
A factory class with methods that conveniently create constraints for sequence comparison. More...
Static Public Member Functions | |
| static SequencesEqualConstraint< TElement > | EqualTo< TElement > (IEnumerable< TElement > expected, IEqualityComparer comparer) |
Creates a constraint that checks if a sequence is equal to the expected sequence. More... | |
| static SequencesEqualConstraint< TElement > | EqualTo< TElement > (IEnumerable< TElement > expected, IEqualityComparer< TElement > comparer) |
Creates a constraint that checks if a sequence is equal to the expected sequence. More... | |
| static SequencesEquivalentConstraint< TElement > | EquivalentTo< TElement > (IEnumerable< TElement > expected, IEqualityComparer comparer) |
Creates a constraint that checks if a sequence is equivalent to the expected sequence. More... | |
| static SequencesEquivalentConstraint< TElement > | EquivalentTo< TElement > (IEnumerable< TElement > expected, IEqualityComparer< TElement > comparer) |
Creates a constraint that checks if a sequence is equivalent to the expected sequence. More... | |
A factory class with methods that conveniently create constraints for sequence comparison.
|
static |
Creates a constraint that checks if a sequence is equal to the expected sequence.
| TElement | the type of the items |
| expected | the expected sequence used for evaluation of the constraint |
| comparer | the comparer instance to use for item comparison |
|
static |
Creates a constraint that checks if a sequence is equal to the expected sequence.
| TElement | the type of the items |
| expected | the expected sequence used for evaluation of the constraint |
| comparer | the comparer instance to use for item comparison |
|
static |
Creates a constraint that checks if a sequence is equivalent to the expected sequence.
| TElement | the type of the items |
| expected | the expected sequence used for evaluation of the constraint |
| comparer | the comparer instance to use for item comparison |
|
static |
Creates a constraint that checks if a sequence is equivalent to the expected sequence.
| TElement | the type of the items |
| expected | the expected sequence used for evaluation of the constraint |
| comparer | the comparer instance to use for item comparison |