notice_test.go 723 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package member
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestService_NoticeV2(t *testing.T) {
  9. Convey("TestService_NoticeV2", func() {
  10. time.Sleep(time.Second * 2)
  11. var (
  12. mid = int64(1)
  13. u = "foo"
  14. //ip = "127.0.0.1"
  15. pf = "ios"
  16. build int64 = 123
  17. )
  18. res, err := s.NoticeV2(context.TODO(), mid, u, pf, build)
  19. So(err, ShouldBeNil)
  20. So(res, ShouldNotBeNil)
  21. })
  22. }
  23. func TestService_CloseNoticeV2(t *testing.T) {
  24. Convey("TestService_CloseNoticeV2", func() {
  25. time.Sleep(time.Second * 2)
  26. var (
  27. mid = int64(1)
  28. u = "foo"
  29. //ip = "127.0.0.1"
  30. )
  31. err := s.CloseNoticeV2(context.TODO(), mid, u)
  32. So(err, ShouldBeNil)
  33. })
  34. }