设置array.length进行单元测试

时间:2015-08-31 20:40:48

标签: javascript arrays unit-testing

如果我正在运行仅根据传入数组的长度测试逻辑的单元测试,我是否应该关注明确设置它的长度?

例如:

let testArray = [];
testArray.length = 11;

const expected = 'too long'
const actual = foo(testArray);

expect(actual).toBe(expected);

对于测试:

undefineds

我知道这是在创建一个{{1}}的数组,但是有更好的方法还是我只是偏执狂?

0 个答案:

没有答案