up_withdraw_test.go 282 B

123456789101112131415
  1. package income
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_GetUpWithdraw(t *testing.T) {
  8. Convey("GetUpWithdraw", t, WithMysql(func(d *Dao) {
  9. _, err := d.ListUpWithdraw(context.Background(), 0, "", 10)
  10. So(err, ShouldBeNil)
  11. }))
  12. }