Files
jx-callback/business/jxcallback/auth/mobile/mobile_test.go
2018-09-05 18:03:53 +08:00

13 lines
154 B
Go

package mobile
import (
"testing"
)
func TestSendVerifyCode(t *testing.T) {
err := SendVerifyCode("18180948107")
if err != nil {
t.Fatal(err)
}
}