bilibili-backup/app/service/main/vip/dao/associate_banner_test.go

20 lines
410 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
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)
})
})
}