go-common/app/job/main/vip/service/associate_test.go

23 lines
464 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package service
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
)
//go test -test.v -test.run TestEleEompensateJob
func TestEleEompensateJob(t *testing.T) {
Convey("TestEleEompensateJob ", t, func() {
s.eleEompensateJob()
})
}
//go test -test.v -test.run TestEleGrantCompensate
func TestEleGrantCompensate(t *testing.T) {
Convey("TestEleGrantCompensate ", t, func() {
err := s.EleGrantCompensate(c)
So(err, ShouldNotBeNil)
})
}