Asserts that two uints 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(
	uint expected,
	uint actual,
	string message,
	Object[] args
)
Public Shared Sub AreNotEqual ( _
	expected As UInteger, _
	actual As UInteger, _
	message As String, _
	args As Object() _
)
public:
static void AreNotEqual(
	unsigned int expected, 
	unsigned int actual, 
	String^ message, 
	array<Object^>^ args
)

Parameters

expected
UInt32
The expected object
actual
UInt32
The actual object
message
String
The message to be displayed when the two objects are the same object.
args
array<Object>[]()[]
Arguments to be used in formatting the message

See Also

Assert Class