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
)
Public Shared Sub AreNotEqual ( _
	expected As Integer, _
	actual As Integer _
)
public:
static void AreNotEqual(
	int expected, 
	int actual
)

Parameters

expected
Int32
The expected object
actual
Int32
The actual object

See Also

Assert Class