Files
baseapi/platformapi/mtwmapi/comment_test.go
2019-05-21 21:40:52 +08:00

16 lines
289 B
Go

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))
}