package weixinmsg import ( "testing" "gitrosy.jxc4.com/jx-callback/business/jxutils/jxcontext" "gitrosy.jxc4.com/jx-callback/globals/api2" "gitrosy.jxc4.com/baseapi/utils" "gitrosy.jxc4.com/jx-callback/globals/testinit" ) func init() { testinit.Init() api2.Init() } func TestGetWeixinOpenIDsFromStoreID(t *testing.T) { openIDs := GetWeixinOpenIDsFromStoreID(100118) t.Log(utils.Format4Output(openIDs, false)) } func TestSendStoreMessage(t *testing.T) { _, err := SendStoreMessage(jxcontext.AdminCtx, "title", "content", []int{1}, false, true) if err != nil { t.Fatal(err) } }