assert.notStrictEqual()

添加的版本:1.0.0

说明

notStrictEqual( actual, expected, message = "" )

严格比较,检查不等式。

名字 说明
actual 正在测试的表达式
expected 已知比较值
message(字符串) 断言的简短说明

notStrictEqual 断言使用严格的反向比较运算符 (!==) 来比较实际参数和预期参数。当它们不相等时,断言通过;否则,它会失败。失败时,除了给定消息外,测试结果中还会显示实际值和预期值。

assert.equal() 可用于测试相等性。

assert.strictEqual() 可用于测试严格相等。

例子

QUnit.test('example', assert => {
  const result = '2';

  // succeeds, while the number 2 and string 2 are similar, they are strictly different.
  assert.notStrictEqual(result, 2);
});