proto/goutils/proto_build/tpls/http_grpc_method_file_test.tpl
huangsimin@fusen.cn c0cbff775f 最新版本
2023-11-27 17:36:02 +08:00

30 lines
484 B
Smarty

package test
import (
"{{.ProjectName}}/gen/go/service"
"fusen-basic/utils/log"
"testing"
)
// 只需要填写参数
func init() {
{{.RequestVar}} = &service.{{.RequestStruct}}{}
}
func Test{{.MethodName}}HTTP(t *testing.T) {
//
resp, err := {{.MethodName}}Http(nil)
if err != nil {
t.Error(err)
}
log.Println(resp)
}
func Test{{.MethodName}}RPC(t *testing.T) {
resp, err := {{.MethodName}}RPC()
if err != nil {
t.Error(err)
}
log.Println(resp)
}