mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
24 lines
364 B
Go
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)
|
|
}))
|
|
}
|