advert_test.go 390 B

123456789101112131415161718192021
  1. package service
  2. import (
  3. "testing"
  4. . "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestDMAdvert(t *testing.T) {
  7. Convey("test dm advert", t, func() {
  8. // arg := &model.ADReq{
  9. // Aid: 10100572,
  10. // Oid: 10115216,
  11. // Mid: 1234,
  12. // Buvid: "1234",
  13. // ClientIP: "127.0.0.1",
  14. // MobiApp: "iphone",
  15. // }
  16. // svr.DMAdvert(context.TODO(), arg)
  17. })
  18. }