用 Jasmine 检查两个边界(匹配器之间)
Checking two boundaries with Jasmine (between matcher)
在 Jasmine 中,有 toBeGreaterThan
和 toBeLessThan
个匹配器。
如果我想检查特定范围内的整数值怎么办?有没有类似 toBeInBetween
匹配器的东西?
目前,我可以在两个单独的 expect
调用中解决它:
var x = 3;
expect(x).toBeGreaterThan(1);
expect(x).toBeLessThan(10);
您可以 运行 布尔比较并断言结果为 true
:
expect(x > 1 && x < 10).toBeTruthy();
此外,还有 toBeWithinRange()
由 jasmine-matchers
引入的自定义匹配器:
expect(x).toBeWithinRange(2, 9); // range borders are included
在 Jasmine 中,有 toBeGreaterThan
和 toBeLessThan
个匹配器。
如果我想检查特定范围内的整数值怎么办?有没有类似 toBeInBetween
匹配器的东西?
目前,我可以在两个单独的 expect
调用中解决它:
var x = 3;
expect(x).toBeGreaterThan(1);
expect(x).toBeLessThan(10);
您可以 运行 布尔比较并断言结果为 true
:
expect(x > 1 && x < 10).toBeTruthy();
此外,还有 toBeWithinRange()
由 jasmine-matchers
引入的自定义匹配器:
expect(x).toBeWithinRange(2, 9); // range borders are included