coupon_test.go 373 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 TestServiceCouponsForPanel
  8. func TestServiceCouponsForPanel(t *testing.T) {
  9. Convey("TestServiceCouponsForPanel", t, func() {
  10. res, err := s.CouponsForPanel(context.TODO(), int64(1), int64(96), "pc")
  11. t.Logf("%v", res)
  12. So(err, ShouldBeNil)
  13. })
  14. }