notice_test.go 416 B

123456789101112131415161718192021
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_GetNotices(t *testing.T) {
  8. var (
  9. typ = 0
  10. platform = 1
  11. offset, limit = 0, 10
  12. )
  13. Convey("GetNotices", t, WithService(func(s *Service) {
  14. res, _, err := s.GetNotices(context.Background(), typ, platform, offset, limit)
  15. So(err, ShouldBeNil)
  16. So(len(res), ShouldBeGreaterThan, 0)
  17. }))
  18. }