我想要获得更多的代码覆盖率.我有一个“信息”方法,只是触发通知,不需要响应.我该如何对它进行单元测试?
public error(message?: any,...optionalParams: any[]) { if (this.isErrorEnabled()) { console.error(`${this.name}: ${message}`,...optionalParams); } }
您可以使用
spies测试其副作用,例如:
原文链接:https://www.f2er.com/angularjs/142258.htmldescribe('error method',=> { it('should log an error on the console',() => { spyOn(console,'error'); error(...); expect(console.error).toHaveBeenCalledWith(...); }); ... });