manager_test.go 335 B

1234567891011121314151617
  1. package vip
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. // go test -test.v -test.run TestServiceManagerInfo
  8. func TestServiceManagerInfo(t *testing.T) {
  9. Convey("TestServiceManagerInfo", t, func() {
  10. res, err := s.ManagerInfo(context.TODO())
  11. t.Logf("res %+v", res)
  12. So(err, ShouldBeNil)
  13. })
  14. }