This commit is contained in:
Gordon
2022-06-24 19:04:06 +08:00
parent b7f257daf1
commit cfcc5c1095
4 changed files with 70 additions and 1 deletions
@@ -0,0 +1,14 @@
package register
import (
"fmt"
"github.com/stretchr/testify/assert"
"testing"
)
func Test_CreateTencentSMSClient(t *testing.T) {
result, err := CreateTencentSMSClient()
assert.Nil(t, err)
fmt.Println("return result is ", result)
}