full_test.go 348 B

1234567891011121314151617181920
  1. package web
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestService_Full(t *testing.T) {
  8. Convey("test Full", t, WithService(func(s *Service) {
  9. var (
  10. pn int64 = 1
  11. ps int64 = 10
  12. )
  13. res, err := s.FullShort(context.Background(), pn, ps, "")
  14. So(err, ShouldBeNil)
  15. So(res, ShouldNotBeNil)
  16. }))
  17. }