123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package like
- import (
- "context"
- "testing"
- "fmt"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestLikeLotteryIndex(t *testing.T) {
- convey.Convey("LotteryIndex", t, func(ctx convey.C) {
- var (
- c = context.Background()
- actID = int64(1)
- platform = int64(1)
- source = int64(1)
- mid = int64(77)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.LotteryIndex(c, actID, platform, source, mid)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- fmt.Printf("%+v", err)
- fmt.Printf("%+v", res)
- })
- })
- })
- }
- func TestAddLotteryTimes(t *testing.T) {
- convey.Convey("LotteryIndex", t, func(ctx convey.C) {
- var (
- c = context.Background()
- sid = int64(1)
- mid = int64(1)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.AddLotteryTimes(c, sid, mid)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- fmt.Printf("%+v", err)
- })
- })
- })
- }
|