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