| 151 | const UseExistingToken = new InjectionToken('UseExistingToken'); |
| 152 | |
| 153 | class UseExisting { |
| 154 | static ɵprov = ɵɵngDeclareInjectable({type: UseExisting, useExisting: UseExistingToken}); |
| 155 | } |
| 156 | |
| 157 | class DependingClass { |
| 158 | constructor(readonly testClass: UseClass) {} |
nothing calls this directly
no test coverage detected