本文整理汇总了TypeScript中chai.assert.ofSize方法的典型用法代码示例。如果您正苦于以下问题:TypeScript assert.ofSize方法的具体用法?TypeScript assert.ofSize怎么用?TypeScript assert.ofSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类chai.assert
的用法示例。
在下文中一共展示了assert.ofSize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: expect
arr.should.be.array();
str.should.not.be.array();
expect(arr).to.be.array();
expect(str).not.to.be.array();
assert.array(arr, 'is array');
arr.should.be.ofSize(3);
arr.should.not.be.ofSize(4);
expect(arr).to.be.ofSize(3);
expect(str).not.to.be.ofSize(4);
assert.ofSize(arr, 3, 'has 3 elements');
arr.should.be.equalTo(otherArr);
arr.should.not.be.equalTo(anotherArr);
expect(arr).to.be.equalTo(otherArr);
expect(str).to.be.not.equalTo(anotherArr);
assert.equalTo(arr, otherArr, 'is equal to');
arr.should.be.containing(1);
arr.should.not.be.containing(4);
expect(arr).to.be.containing(1);
expect(str).to.be.not.containing(4);