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.
20 lines
324 B
20 lines
324 B
package service |
|
|
|
import ( |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func Test_handlerPayOrder(t *testing.T) { |
|
Convey("handler pay order", t, func() { |
|
s.HandlerPayOrder() |
|
}) |
|
} |
|
|
|
func Test_autoRenews(t *testing.T) { |
|
Convey("autorenews ", t, func() { |
|
err := s.autoRenews() |
|
So(err, ShouldBeNil) |
|
}) |
|
}
|
|
|