(t *testing.T)
| 8 | ) |
| 9 | |
| 10 | func TestMultiProviderNone(t *testing.T) { |
| 11 | t.Parallel() |
| 12 | provider := NewMultiProvider() |
| 13 | value, found := provider.Get(t.Context(), "TEST1") |
| 14 | |
| 15 | assert.Empty(t, value) |
| 16 | assert.False(t, found) |
| 17 | } |
| 18 | |
| 19 | func TestMultiProviderDelegate(t *testing.T) { |
| 20 | t.Parallel() |
nothing calls this directly
no test coverage detected