16 lines
282 B
Go
16 lines
282 B
Go
package income
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func Test_GetUpWithdraw(t *testing.T) {
|
|
Convey("GetUpWithdraw", t, WithMysql(func(d *Dao) {
|
|
_, err := d.ListUpWithdraw(context.Background(), 0, "", 10)
|
|
So(err, ShouldBeNil)
|
|
}))
|
|
}
|