- JasmineJS 教程
- JasmineJS - 主页
- JasmineJS - 概述
- JasmineJS - 环境设置
- JasmineJS - 编写文本和执行
- JasmineJS - BDD 架构
- JasmineJS - 测试构建块
- JasmineJS - 匹配器
- JasmineJS - 跳过块
- JasmineJS - 平等检查
- JasmineJS - 布尔检查
- JasmineJS - 顺序检查
- JasmineJS - 空检查
- JasmineJS - 不平等检查
- JasmineJS - 不是数字检查
- JasmineJS - 异常检查
- JasmineJS - beforeEach()
- JasmineJS - afterEach()
- JasmineJS - 间谍
- JasmineJS 有用资源
- JasmineJS - 快速指南
- JasmineJS - 有用的资源
- JasmineJS - 讨论
JasmineJS - 平等检查
Jasmine 提供了很多方法来帮助我们检查任何 JavaScript 函数和文件的相等性。以下是检查相等条件的一些示例。
等于()
ToEqual()是 Jasmine 内置库中最简单的匹配器。它只是匹配作为该方法的参数给出的操作结果是否与它的结果匹配。
以下示例将帮助您了解该匹配器的工作原理。我们有两个要测试的文件,名为“expectexam.js”,另一个需要测试的文件是“expectSpec.js”。
Expectexam.js
window.expectexam = { currentVal: 0, };
ExpectSpec.js
describe("Different Methods of Expect Block",function () { it("The Example of toEqual() method",function () { //this will check whether the value of the variable // currentVal is equal to 0 or not. expect(expectexam.currentVal).toEqual(0); }); });
成功执行后,这些代码将产生以下输出。请记住,您需要按照前面示例中的指示将这些文件添加到specRunner.html文件的标头部分。
not.toEqual()
not.toEqual() 的工作原理与 toEqual() 完全相反。当我们需要检查值是否与任何函数的输出不匹配时,使用not.toEqual() 。
我们将修改上面的示例来展示其工作原理。
ExpectSpec.js
describe("Different Methods of Expect Block",function () { it("The Example of toEqual() method",function () { expect(expectexam.currentVal).toEqual(0); }); it("The Example of not.toEqual() method",function () { //negation testing expect(expectexam.currentVal).not.toEqual(5); }); });
Expectexam.js
window.expectexam = { currentVal: 0, };
在第二个 Expect 块中,我们检查 currentVal 的值是否等于5,因为 currentVal 的值为零,因此我们的测试通过并为我们提供绿色输出。
成为()
toBe()匹配器的工作方式与 toEqual() 类似,但它们在技术上彼此不同。toBe() 匹配器与对象的类型匹配,而toEqual()与结果的等价性匹配。
以下示例将帮助您了解 toBe() 匹配器的工作原理。该匹配器与 JavaScript 的“===”运算符完全相同,而 toEqual() 与 JavaScript 的“==”运算符类似。
ExpectSpec.js
describe("Different Methods of Expect Block",function () { it("The Example of toBe() method",function () { expect(expectexam.name).toBe(expectexam.name1); }); });
Expectexam.js
window.expectexam = { currentVal: 0, name:"tutorialspoint", name1:tutorialspoint };
我们将稍微修改我们的expectexam JavaScript 文件。我们添加了两个新变量name和name1。请找出这两个添加的变量的区别,一个是字符串类型,另一个不是字符串类型。
下面的屏幕截图是我们的测试结果,其中红叉表示这两个值不相等,而预期是相等的。因此我们的测试失败了。
让我们将变量name和name1都转换为 String 类型变量,并再次运行相同的SpecRunner.html。现在检查输出。它将证明toBe()不仅与变量的等价性匹配,而且还与变量的数据类型或对象类型匹配。
not.toBe()
如前所述, not 只不过是 toBe() 方法的否定。当预期结果与函数或 JavaScript 文件的实际输出匹配时,它会失败。
以下是一个简单的示例,将帮助您了解 not.toBe() 匹配器的工作原理。
describe("Different Methods of Expect Block",function () { it("The Example of not.toBe() method",function () { expect(true).not.toBe(false); }); });
这里 Jasmine 将尝试将 true 与 false 匹配。由于 true 不能与 false 相同,因此该测试用例将有效并通过。