fakeProviderBuilder builds new instances of fakeProvider and interprets the config provided to it as a string.
| 67 | // fakeProviderBuilder builds new instances of fakeProvider and interprets the |
| 68 | // config provided to it as a string. |
| 69 | type fakeProviderBuilder struct { |
| 70 | name string |
| 71 | providerChan *testutils.Channel |
| 72 | } |
| 73 | |
| 74 | func (b *fakeProviderBuilder) ParseConfig(config any) (*BuildableConfig, error) { |
| 75 | s, ok := config.(string) |
nothing calls this directly
no outgoing calls
no test coverage detected