This topic has not yet been rated - Rate this topic

Assert.AreNotEqual Method (Single, Single, Single, String)

Verifies that two specified singles are not equal, and not within the specified accuracy of each other. The assertion fails if they are equal or within the specified accuracy of each other. Displays a message if the assertion fails.

Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
public static void AreNotEqual(
	float notExpected,
	float actual,
	float delta,
	string message
)

Parameters

notExpected
Type: System.Single

The first single to compare. This is the single the unit test expects.

actual
Type: System.Single
delta
Type: System.Single
message
Type: System.String
ExceptionCondition
AssertFailedException

notExpected is equal to actual or different from it by less than delta.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.