http_test.go 297 B

12345678910111213141516
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoAutoRenewPay(t *testing.T) {
  8. Convey("TestDaoAutoRenewPay", t, func() {
  9. res, err := d.AutoRenewPay(context.Background(), 1234)
  10. t.Logf("%+v,%+v", res, err)
  11. So(res, ShouldNotBeNil)
  12. })
  13. }