sms_test.go 220 B

1234567891011121314
  1. package util
  2. import "testing"
  3. func TestSendSMS(t *testing.T) {
  4. var (
  5. mobile = "18310412106,13810833508"
  6. content = "this is a test message"
  7. )
  8. err := SendSMS(mobile, content)
  9. if err != nil {
  10. t.Fatal(err)
  11. }
  12. }