1234567891011121314 |
- package dao
- import (
- . "github.com/smartystreets/goconvey/convey"
- "testing"
- )
- func TestDelWalletCache(t *testing.T) {
- Convey("Test Del Memcache", t, func() {
- once.Do(startService)
- err := d.DelWalletCache(ctx, 10000)
- So(err, ShouldBeNil)
- })
- }
|