package smsmsg import ( "testing" "git.rosy.net.cn/jx-callback/globals/testinit" ) func init() { testinit.Init() // api2.Init() } func TestSendSMSMsg(t *testing.T) { err := SendSMSMsg([]string{"18180948107"}, "京西菜市", "SMS_84655036", map[string]interface{}{ "code": 123456, }) if err != nil { t.Fatal(err) } }