biz_test.go 604 B

123456789101112131415161718192021222324252627
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestArchiveBIZsByTime(t *testing.T) {
  9. convey.Convey("BIZsByTime", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. start = &time.Time{}
  13. end = &time.Time{}
  14. tp = int8(0)
  15. )
  16. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  17. bizs, err := d.BIZsByTime(c, start, end, tp)
  18. ctx.Convey("Then err should be nil.bizs should not be nil.", func(ctx convey.C) {
  19. ctx.So(err, convey.ShouldBeNil)
  20. ctx.So(bizs, convey.ShouldNotBeNil)
  21. })
  22. })
  23. })
  24. }