public writeValue(item): void {
if(item.length> 0)
for(let i=0;i<=item.length-1;i++)
{
this.salesDivisionTagSet.push(item[i]);
}
我是角度测试的新手,由于覆盖范围没有增加,我无法为上述内容编写单元测试用例,有人可以帮我解决这个问题。
答案 0 :(得分:0)
您的测试用例如下所示。
it("should push when item when list is selected", () => {
component.salesDivision = mockSalesDivision
spyOn(component.salesDivisionTagSet, "push");
component.writeValue([9,1]);
expect(component.salesDivisionTagSet.push).toHaveBeenCalled();
})
如代码所示,项目可以是数组或简单值。上面的测试案例涵盖了数组的类型。您需要编写另一个测试用例,其中值将是非数组,如下所示。
component.writeValue(78);
expect(component.salesDivisionTagSet.push).not.toHaveBeenCalled();