Asserts that two ints are not equal. If they are equal an AssertionException is thrown.

Namespace: MbUnit.Framework
Assembly:  MbUnit.Framework (in MbUnit.Framework.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void AreNotEqual(
	int expected,
	int actual,
	string message
)
Public Shared Sub AreNotEqual ( _
	expected As Integer, _
	actual As Integer, _
	message As String _
)
public:
static void AreNotEqual(
	int expected, 
	int actual, 
	String^ message
)

Parameters

expected
Int32
The expected object
actual
Int32
The actual object
message
String
The message to be displayed when the objects are the same

See Also

Assert Class