(
component: Type<T>,
options?: TestComponentOptions,
)
| 414 | } |
| 415 | |
| 416 | static createComponent<T>( |
| 417 | component: Type<T>, |
| 418 | options?: TestComponentOptions, |
| 419 | ): ComponentFixture<T> { |
| 420 | return TestBedImpl.INSTANCE.createComponent(component, options); |
| 421 | } |
| 422 | |
| 423 | static getLastFixture<T = unknown>(): ComponentFixture<T> { |
| 424 | return TestBedImpl.INSTANCE.getLastFixture(); |
nothing calls this directly
no test coverage detected