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.
 
 
 

25 lines
636 B

package upcrmservice
import (
"context"
"go-common/app/admin/main/up/model"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestUpcrmserviceCommandRefreshUpRank(t *testing.T) {
convey.Convey("CommandRefreshUpRank", t, func(ctx convey.C) {
var (
con = context.Background()
arg = &model.CommandCommonArg{}
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
result, err := s.CommandRefreshUpRank(con, arg)
ctx.Convey("Then err should be nil.result should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(result, convey.ShouldNotBeNil)
})
})
})
}