You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
604 B
27 lines
604 B
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) |
|
}) |
|
}) |
|
}) |
|
}
|
|
|