15 lines
265 B
Go
15 lines
265 B
Go
package cms
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
|
|
)
|
|
|
|
func TestSendStoreMessage(t *testing.T) {
|
|
_, err := SendStoreMessage(jxcontext.AdminCtx, "title", "content", []int{1}, false, true)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|