- mtwm order comment

This commit is contained in:
gazebo
2019-05-21 21:40:52 +08:00
parent 147a691fb8
commit 41a2d7ed5d
2 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package mtwmapi
import (
"testing"
"git.rosy.net.cn/baseapi/utils"
)
func TestCommentQuery(t *testing.T) {
result, err := api.CommentQuery("6783778", "20190501", "20190515", 0, 0, CommentReplyStatusAll)
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}