(t *testing.T, name, config string, opts BuildOptions)
| 168 | } |
| 169 | |
| 170 | func createProvider(t *testing.T, name, config string, opts BuildOptions) Provider { |
| 171 | t.Helper() |
| 172 | prov, err := GetProvider(name, config, opts) |
| 173 | if err != nil { |
| 174 | t.Fatalf("GetProvider(%s, %s, %v) failed: %v", name, config, opts, err) |
| 175 | } |
| 176 | return prov |
| 177 | } |
| 178 | |
| 179 | // TestStoreSingleProvider creates a single provider through the store and calls |
| 180 | // methods on them. |
no test coverage detected