我有 ViewChild
与 set content
. 我想知道如何使用单元测试来测试这段代码。
这张图是代码覆盖率
@ViewChild(MatSort) set content(content: ElementRef) {
this.sort = content;
Iif (this.sort) {
this.historyReport.sort = this.sort;
}
}
在依赖关系中添加MatSortModule,将对你有所帮助
imports: [MatSortModule],
declarations: [],
providers: [
]
}).compileComponents();```