go-common/app/interface/main/creative/dao/archive/biz_test.go
2019-04-22 18:49:16 +08:00

28 lines
604 B
Go

package archive
import (
"context"
"testing"
"time"
"github.com/smartystreets/goconvey/convey"
)
func TestArchiveBIZsByTime(t *testing.T) {
convey.Convey("BIZsByTime", t, func(ctx convey.C) {
var (
c = context.Background()
start = &time.Time{}
end = &time.Time{}
tp = int8(0)
)
ctx.Convey("When everything gose positive", func(ctx convey.C) {
bizs, err := d.BIZsByTime(c, start, end, tp)
ctx.Convey("Then err should be nil.bizs should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(bizs, convey.ShouldNotBeNil)
})
})
})
}