Assert.AreNotEqual Method (Single, Single, Single, String)
Visual Studio 2008
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.
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
| Exception | Condition |
|---|---|
| AssertFailedException | notExpected is equal to actual or different from it by less than delta. |
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.