斷言模塊提供了一組用於驗證不變量的斷言函數。 assert.notStrictEqual()函數測試實際參數和預期參數之間的嚴格不等式。如果條件為真,則不會產生輸出,否則會引發斷言錯誤。句法:
assert.notStrictEqual(actual, expected[, message])
參數:該函數具有三個參數,實際參數可以是任何類型,預期參數可以是任何類型,消息參數可以是字符串或錯誤類型返回值:此函數返回對象類型的聲明錯誤安裝斷言模塊:
- 您可以訪問指向安裝斷言模塊的鏈接。您可以使用此命令安裝此軟件包。
npm install assert
- Note:安裝是可選步驟,因為它是內置的Node.js模塊。
- 安裝斷言模塊後,可以使用命令在命令提示符下檢查斷言版本。
npm version assert
- 之後,您可以創建一個文件夾並添加一個文件,例如index.js,如下所示。
範例1: 文件名:index.js
javascript
// Requiring the module
const assert = require('assert').strict;
var a = 2;
var b = 2;
// Function call
try {
assert.notStrictEqual(a, b)
} catch(error) {
console.log("Error:", error)
}
運行程序的步驟:
- 項目結構將如下所示:
- 使用以下命令運行index.js文件:
node index.js
- 輸出:
Error: AssertionError [ERR_ASSERTION]:Expected “actual” to be strictly unequal to:2
at Object. (C:\Users\Lenovo\Downloads\index.js:9:12)
at Module._compile (internal/modules/cjs/loader.js:1138:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1158:10)
at Module.load (internal/modules/cjs/loader.js:986:32)
at Function.Module._load (internal/modules/cjs/loader.js:879:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)
at internal/main/run_main_module.js:17:47 {
generatedMessage:true,
code:‘ERR_ASSERTION’,
actual:2,
expected:2,
operator:‘notStrictEqual’
}
範例2: 文件名:index.js
javascript
// Requiring the module
const assert = require('assert').strict;
var a = 4;
var b = "Four";
// Function call
try {
assert.notStrictEqual(a, b)
console.log("No Error Occured")
} catch(error) {
console.log("Error:", error)
}
a = 4;
b = 4;
// Function call
try {
assert.notStrictEqual(a, b)
} catch(error) {
console.log("Error Occured:", error)
}
運行程序的步驟:
- 項目結構將如下所示:
- 使用以下命令運行index.js文件:
node index.js
- 輸出:
No Error Occured
Error Occured:AssertionError [ERR_ASSERTION]:Expected “actual” to be strictly
unequal to:4
at Object. (C:\Users\Lenovo\Downloads\index.js:20:12)
at Module._compile (internal/modules/cjs/loader.js:1138:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1158:10)
at Module.load (internal/modules/cjs/loader.js:986:32)
at Function.Module._load (internal/modules/cjs/loader.js:879:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)
at internal/main/run_main_module.js:17:47 {
generatedMessage:true,
code:‘ERR_ASSERTION’,
actual:4,
expected:4,
operator:‘notStrictEqual’
}
相關用法
- Node.js GM whiteThreshold()用法及代碼示例
- Node.js GM write()用法及代碼示例
- Node.js GM drawRectangle()用法及代碼示例
- Node.js GM drawPolygon()用法及代碼示例
- Node.js GM sepia()用法及代碼示例
- Node.js GM contrast()用法及代碼示例
- Node.js GM lower()用法及代碼示例
- Node.js GM scale()用法及代碼示例
- Node.js GM drawPolyline()用法及代碼示例
- Node.js GM drawArc()用法及代碼示例
- Node.js GM modulate()用法及代碼示例
- Node.js GM drawLine()用法及代碼示例
- Node.js GM drawBezier()用法及代碼示例
- Node.js GM minify()用法及代碼示例
- Node.js GM magnify()用法及代碼示例
- Node.js GM drawEllipse()用法及代碼示例
- Node.js GM operator()用法及代碼示例
- Node.js GM equalize()用法及代碼示例
- Node.js GM negative()用法及代碼示例
注:本文由純淨天空篩選整理自gouravhammad大神的英文原創作品 Node.js assert.notStrictEqual() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。