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.
22 lines
464 B
22 lines
464 B
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) |
|
}) |
|
}
|
|
|