go-common/app/interface/main/space/service/app_test.go
2019-04-22 18:49:16 +08:00

28 lines
536 B
Go

package service
import (
"context"
"encoding/json"
"testing"
"go-common/app/interface/main/space/model"
. "github.com/smartystreets/goconvey/convey"
)
func TestService_AppIndex(t *testing.T) {
Convey("test app acc info", t, WithService(func(s *Service) {
arg := &model.AppIndexArg{
Vmid: 15555180,
Mid: 0,
Platform: "ios",
Qn: 16,
Device: _devicePad,
}
data, err := s.AppIndex(context.Background(), arg)
So(err, ShouldBeNil)
str, _ := json.Marshal(data)
Println(string(str))
}))
}