associate_test.go 464 B

12345678910111213141516171819202122
  1. package service
  2. import (
  3. "testing"
  4. . "github.com/smartystreets/goconvey/convey"
  5. )
  6. //go test -test.v -test.run TestEleEompensateJob
  7. func TestEleEompensateJob(t *testing.T) {
  8. Convey("TestEleEompensateJob ", t, func() {
  9. s.eleEompensateJob()
  10. })
  11. }
  12. //go test -test.v -test.run TestEleGrantCompensate
  13. func TestEleGrantCompensate(t *testing.T) {
  14. Convey("TestEleGrantCompensate ", t, func() {
  15. err := s.EleGrantCompensate(c)
  16. So(err, ShouldNotBeNil)
  17. })
  18. }