You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
410 B

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)
})
})
}