21 lines
371 B
Go
21 lines
371 B
Go
package ali_cloud_tool
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestAliCloudExpressClient_CallRealNameAuthAPI(t *testing.T) {
|
|
s := &AliCloudRealNameClient{
|
|
AppCode: "",
|
|
Host: "",
|
|
}
|
|
got, err := s.CallRealNameAuthAPI(context.Background(), "", "")
|
|
if err != nil {
|
|
t.Errorf("CallRealNameAuthAPI() error = %v", err)
|
|
return
|
|
}
|
|
fmt.Println("=====", got)
|
|
}
|