Assert.AreNotEqual 方法 (Single, Single, Single)
验证指定的两个单精度型值是否既不相等又不在对方的指定精度内。 如果它们相等或者在对方的指定精度内,则断言失败。
命名空间: Microsoft.VisualStudio.TestTools.UnitTesting
程序集: Microsoft.VisualStudio.QualityTools.UnitTestFramework(在 Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 中)
语法
声明
Public Shared Sub AreNotEqual ( _
notExpected As Single, _
actual As Single, _
delta As Single _
)
public static void AreNotEqual(
float notExpected,
float actual,
float delta
)
public:
static void AreNotEqual(
float notExpected,
float actual,
float delta
)
static member AreNotEqual :
notExpected:float32 *
actual:float32 *
delta:float32 -> unit
public static function AreNotEqual(
notExpected : float,
actual : float,
delta : float
)
参数
- notExpected
类型:System.Single
要比较的第一个单精度型值。这是单元测试要求的单精度型值。
- actual
类型:System.Single
要比较的第二个单精度型值。这是单元测试生成的单精度型值。
- delta
类型:System.Single
要求的误差。只有当 notExpected 与 actual 相等或者它们的差小于 delta 时断言才失败。
异常
异常 | 条件 |
---|---|
AssertFailedException | notExpected 与 actual 相等或者它们的差小于 delta。 |
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualStudio.TestTools.UnitTesting 命名空间