go-common/app/interface/main/account/service/vip/manager_test.go
2019-04-22 18:49:16 +08:00

18 lines
335 B
Go

package vip
import (
"context"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
// go test -test.v -test.run TestServiceManagerInfo
func TestServiceManagerInfo(t *testing.T) {
Convey("TestServiceManagerInfo", t, func() {
res, err := s.ManagerInfo(context.TODO())
t.Logf("res %+v", res)
So(err, ShouldBeNil)
})
}