lottery_test.go 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package like
  2. import (
  3. "context"
  4. "testing"
  5. "fmt"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestLikeLotteryIndex(t *testing.T) {
  9. convey.Convey("LotteryIndex", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. actID = int64(1)
  13. platform = int64(1)
  14. source = int64(1)
  15. mid = int64(77)
  16. )
  17. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  18. res, err := d.LotteryIndex(c, actID, platform, source, mid)
  19. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  20. fmt.Printf("%+v", err)
  21. fmt.Printf("%+v", res)
  22. })
  23. })
  24. })
  25. }
  26. func TestAddLotteryTimes(t *testing.T) {
  27. convey.Convey("LotteryIndex", t, func(ctx convey.C) {
  28. var (
  29. c = context.Background()
  30. sid = int64(1)
  31. mid = int64(1)
  32. )
  33. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  34. err := d.AddLotteryTimes(c, sid, mid)
  35. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  36. fmt.Printf("%+v", err)
  37. })
  38. })
  39. })
  40. }