search_test.go 449 B

1234567891011121314151617181920212223
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/esports/model"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestService_Search(t *testing.T) {
  9. Convey("test service Search", t, WithService(func(s *Service) {
  10. arg := &model.ParamSearch{
  11. Keyword: "dota",
  12. Pn: 1,
  13. Ps: 30,
  14. }
  15. res, err := s.Search(context.Background(), 0, arg, "")
  16. So(err, ShouldBeNil)
  17. So(res, ShouldNotBeEmpty)
  18. }))
  19. }