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
498 B

package dao
import (
"context"
"testing"
"go-common/app/admin/main/dm/model"
. "github.com/smartystreets/goconvey/convey"
)
func TestSearchSubtitle(t *testing.T) {
var (
arg = &model.SubtitleSearchArg{
Oid: int64(10131981),
}
)
Convey("search subtitles", t, func() {
res, err := testDao.SearchSubtitle(context.Background(), arg)
So(err, ShouldBeNil)
So(res, ShouldNotBeEmpty)
t.Logf("res:%+v", res)
for _, rpt := range res.Result {
t.Logf("======%+v", rpt)
}
})
}