associate_banner_test.go 410 B

12345678910111213141516171819
  1. package dao
  2. import (
  3. "context"
  4. "fmt"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDaoEffectiveAssociateVips(t *testing.T) {
  9. convey.Convey("EffectiveAssociateVips", t, func(ctx convey.C) {
  10. res, err := d.EffectiveAssociateVips(context.Background())
  11. fmt.Println("res", res)
  12. ctx.Convey(" EffectiveAssociateVips ", func(ctx convey.C) {
  13. ctx.So(err, convey.ShouldBeNil)
  14. })
  15. })
  16. }