| 24 | |
| 25 | function renderInjectGeneration(options: any) { |
| 26 | @Component({ standalone: true, template: '' }) |
| 27 | class Host { |
| 28 | gen = injectGeneration(options) |
| 29 | } |
| 30 | const fixture = TestBed.createComponent(Host) |
| 31 | fixture.detectChanges() |
| 32 | return { |
nothing calls this directly
no test coverage detected