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.
24 lines
470 B
24 lines
470 B
package dao |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestDMAdvert(t *testing.T) { |
|
Convey("dm advert", t, func() { |
|
var ( |
|
c = context.TODO() |
|
aid int64 = 10100572 |
|
cid int64 = 10115256 |
|
mid int64 = 12345881 |
|
build int64 = 8111 |
|
adExtra = "" |
|
buvid = "5400000" |
|
mobiApp = "android" |
|
) |
|
testDao.DMAdvert(c, aid, cid, mid, build, buvid, mobiApp, adExtra) |
|
}) |
|
}
|
|
|