package test import ( "git.sxidc.com/service-supports/dapr_api" "testing" "time" ) func TestHealth(t *testing.T) { err := dapr_api.Health(10080, 10*time.Second) if err != nil { t.Fatal(err) } }