Files
openbilibili/app/service/main/search/service/reply_test.go
2019-04-22 20:46:32 +08:00

24 lines
364 B
Go

package service
import (
"context"
"go-common/app/service/main/search/model"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func Test_Reply(t *testing.T) {
var (
err error
c = context.TODO()
sp *model.ReplyRecordParams
)
Convey("Reply", t, WithService(func(s *Service) {
_, err = s.ReplyRecord(c, sp)
So(err, ShouldBeNil)
}))
}