mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2026-04-24 09:44:32 +08:00
16 lines
333 B
Go
16 lines
333 B
Go
package dns
|
|
|
|
import "testing"
|
|
|
|
func TestDescribeDomainGroups(t *testing.T) {
|
|
client := NewTestClientNew()
|
|
describeArgs := DescribeDomainGroupsArgs{}
|
|
|
|
_, err := client.DescribeDomainGroups(&describeArgs)
|
|
if err == nil {
|
|
t.Logf("DescribeDomainGroups success")
|
|
} else {
|
|
t.Errorf("Failed to DescribeDomainGroups: %v", err)
|
|
}
|
|
}
|