ugc_test.go 611 B

123456789101112131415161718192021222324252627
  1. package web
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestWebUgcIncre(t *testing.T) {
  8. convey.Convey("UgcIncre", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. pn = int(1)
  12. ps = int(10)
  13. start = int64(1505876448)
  14. end = int64(1505876450)
  15. )
  16. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  17. res, err := d.UgcIncre(c, pn, ps, start, end)
  18. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  19. ctx.So(err, convey.ShouldBeNil)
  20. ctx.So(res, convey.ShouldNotBeNil)
  21. })
  22. })
  23. })
  24. }