You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
373 B
17 lines
373 B
package vip |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
// go test -test.v -test.run TestServiceCouponsForPanel |
|
func TestServiceCouponsForPanel(t *testing.T) { |
|
Convey("TestServiceCouponsForPanel", t, func() { |
|
res, err := s.CouponsForPanel(context.TODO(), int64(1), int64(96), "pc") |
|
t.Logf("%v", res) |
|
So(err, ShouldBeNil) |
|
}) |
|
}
|
|
|