| 88 | |
| 89 | it('binds multiple providers from component', () => { |
| 90 | class ProviderA implements Provider<string> { |
| 91 | value() { |
| 92 | return 'a'; |
| 93 | } |
| 94 | } |
| 95 | class ProviderB implements Provider<string> { |
| 96 | value() { |
| 97 | return 'b'; |
nothing calls this directly
no outgoing calls
no test coverage detected