Verifies that expected and actual are equal collections. Element count and element wize equality is verified.

Namespace:  MbUnit.Framework
Assembly:  MbUnit.Compatibility (in MbUnit.Compatibility.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public static void AreEqual(
	ICollection expected,
	ICollection actual
)
Visual Basic (Declaration)
Public Shared Sub AreEqual ( _
	expected As ICollection, _
	actual As ICollection _
)

Parameters

expected
Type: System.Collections..::.ICollection
Expected value.
actual
Type: System.Collections..::.ICollection
Instance containing the tested value.

See Also