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