Asserts that two decimals 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(
	decimal expected,
	decimal actual,
	string message
)
Public Shared Sub AreNotEqual ( _
	expected As Decimal, _
	actual As Decimal, _
	message As String _
)
public:
static void AreNotEqual(
	Decimal expected, 
	Decimal actual, 
	String^ message
)

Parameters

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

See Also

Assert Class