()
| 1823 | @ViewChild('container', {read: ViewContainerRef}) viewContainerRef!: ViewContainerRef; |
| 1824 | |
| 1825 | createDynamicView() { |
| 1826 | this.viewContainerRef.createComponent(DynamicComp); |
| 1827 | } |
| 1828 | } |
| 1829 | |
| 1830 | TestBed.configureTestingModule({declarations: [App, MyComp, DynamicComp]}); |
no test coverage detected