(t *testing.T)
| 59 | } |
| 60 | |
| 61 | func TestGetStorageAccountKeyNotSet(t *testing.T) { |
| 62 | cfg := Config{} |
| 63 | |
| 64 | actual := getStorageAccountKey(&cfg) |
| 65 | assert.Equal(t, "", actual) |
| 66 | } |
| 67 | |
| 68 | func TestGetContainerClient(t *testing.T) { |
| 69 | cfg := Config{ |
nothing calls this directly
no test coverage detected