feedback_test.go 909 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func Test_Replys(t *testing.T) {
  9. Convey("Replys", t, WithService(func(s *Service) {
  10. _, _, err := s.Replys(context.Background(), "1466046600", "ios", "0", "phone", "abc", "123", "android-creative", 11111, 1, 10)
  11. So(err, ShouldBeNil)
  12. }))
  13. }
  14. func Test_Sessions(t *testing.T) {
  15. Convey("Sessions", t, WithService(func(s *Service) {
  16. _, _, err := s.Sessions(context.Background(), 1, "2", "3", "ios", time.Now(), time.Now(), 1, 10)
  17. So(err, ShouldBeNil)
  18. }))
  19. }
  20. func Test_Tags(t *testing.T) {
  21. Convey("Tags", t, WithService(func(s *Service) {
  22. _, err := s.Tags(context.Background(), 1, 1, "ios")
  23. So(err, ShouldBeNil)
  24. }))
  25. }
  26. func Test_WebReplys(t *testing.T) {
  27. Convey("WebReplys", t, WithService(func(s *Service) {
  28. _, err := s.WebReplys(context.Background(), 1, 1)
  29. So(err, ShouldBeNil)
  30. }))
  31. }