()
| 1018 | ) {} |
| 1019 | |
| 1020 | ngOnInit() { |
| 1021 | this.renderer.listen(this.elementRef.nativeElement, 'click', (event: any) => { |
| 1022 | this.count++; |
| 1023 | this.eventObj1 = event; |
| 1024 | }); |
| 1025 | this.ngZone.runOutsideAngular(() => { |
| 1026 | this.renderer.listen(this.elementRef.nativeElement, 'click', (event: any) => { |
| 1027 | this.count++; |
| 1028 | this.eventObj2 = event; |
| 1029 | }); |
| 1030 | }); |
| 1031 | } |
| 1032 | } |
| 1033 | |
| 1034 | TestBed.configureTestingModule({declarations: [TestComponent]}); |
nothing calls this directly
no test coverage detected