Asserts that two floats 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(
	float expected,
	float actual
)
Public Shared Sub AreNotEqual ( _
	expected As Single, _
	actual As Single _
)
public:
static void AreNotEqual(
	float expected, 
	float actual
)

Parameters

expected
Single
The expected object
actual
Single
The actual object

See Also

Assert Class