| 199 | } |
| 200 | |
| 201 | @Component({ |
| 202 | template: `<parent [prop]="prop" [prop2]="prop2"></parent>`, |
| 203 | standalone: false, |
| 204 | |
| 205 | changeDetection: ChangeDetectionStrategy.Eager, |
| 206 | }) |
| 207 | class App { |
| 208 | prop = 'a'; |
| 209 | prop2 = 1; |
| 210 | } |
| 211 | |
| 212 | TestBed.configureTestingModule({declarations: [App, ParentCmp, ChildCmp]}); |
| 213 | const fixture = TestBed.createComponent(App); |
nothing calls this directly
no test coverage detected