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.
28 lines
514 B
28 lines
514 B
package dao |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
"go-common/app/service/main/history/model" |
|
|
|
"github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestDaoAddHistoryMessage(t *testing.T) { |
|
var ( |
|
c = context.Background() |
|
k = int(1) |
|
msg = []*model.Merge{{ |
|
Mid: 1, |
|
Bid: 4, |
|
Time: 10000, |
|
}} |
|
) |
|
convey.Convey("AddHistoryMessage", t, func(ctx convey.C) { |
|
err := d.AddHistoryMessage(c, k, msg) |
|
ctx.Convey("Then err should be nil.", func(ctx convey.C) { |
|
ctx.So(err, convey.ShouldBeNil) |
|
}) |
|
}) |
|
}
|
|
|