You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
601 B
27 lines
601 B
package ugc |
|
|
|
import ( |
|
"encoding/json" |
|
"fmt" |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestService_InitUpper(t *testing.T) { |
|
Convey("TestService_InitUpper", t, WithService(func(s *Service) { |
|
err := s.InitUpper(10920044) |
|
So(err, ShouldBeNil) |
|
})) |
|
} |
|
|
|
func TestService_UpArchives(t *testing.T) { |
|
Convey("TestService_UpArchives", t, WithService(func(s *Service) { |
|
pMatch, pAids, err := s.UpArchives(10920044, 1, 100) |
|
So(err, ShouldBeNil) |
|
data, _ := json.Marshal(pMatch) |
|
data2, _ := json.Marshal(pAids) |
|
fmt.Println(string(data)) |
|
fmt.Println(string(data2)) |
|
})) |
|
}
|
|
|