Verifies that expected and actual sequences have the same number of elements and
that the elements are referentially equal but perhaps in a different order.
Namespace:
MbUnit.Framework
Assembly:
MbUnit (in MbUnit.dll) Version: 3.3.0.0 (3.3.459.0)
Syntax
| C# |
|---|
public static void AreElementsSameIgnoringOrder<T>(
IEnumerable<T> expectedSequence,
IEnumerable<T> actualSequence
)
where T : class
|
| Visual Basic (Declaration) |
|---|
Public Shared Sub AreElementsSameIgnoringOrder(Of T As Class) ( _
expectedSequence As IEnumerable(Of T), _
actualSequence As IEnumerable(Of T) _
) |
Type Parameters
Exceptions
See Also