bilibili-backup/app/service/main/vip/dao/associate_banner_test.go
2019-04-22 02:59:20 +00:00

20 lines
410 B
Go

package dao
import (
"context"
"fmt"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestDaoEffectiveAssociateVips(t *testing.T) {
convey.Convey("EffectiveAssociateVips", t, func(ctx convey.C) {
res, err := d.EffectiveAssociateVips(context.Background())
fmt.Println("res", res)
ctx.Convey(" EffectiveAssociateVips ", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
})
})
}