livewallet_test.go 295 B

1234567891011121314151617
  1. package dao
  2. import (
  3. "context"
  4. . "github.com/smartystreets/goconvey/convey"
  5. "testing"
  6. )
  7. func TestDao_LiveWallet(t *testing.T) {
  8. Convey("normal", t, func() {
  9. mid := int64(1)
  10. w, e := testDao.LiveWallet(context.Background(), mid, "android")
  11. So(e, ShouldBeNil)
  12. t.Logf("%+v", w)
  13. })
  14. }