- api GetEleCommentList added

This commit is contained in:
gazebo
2019-02-22 11:04:02 +08:00
parent 8b088380ef
commit fb77048058
2 changed files with 81 additions and 2 deletions

View File

@@ -40,3 +40,14 @@ func TestGetStoreOrderInfoList(t *testing.T) {
baseapi.SugarLogger.Debug(len(orderInfoList))
}
}
func TestGetEleCommentList(t *testing.T) {
commentList, err := api.GetEleCommentList("2019-02-14 13:00:00", "2019-02-15 15:30:00", "", "", ReplyStatusAll, CommentLevelAll, CommentContentAll)
if err != nil {
t.Fatal(err)
}
if true {
baseapi.SugarLogger.Debug(utils.Format4Output(commentList, false))
baseapi.SugarLogger.Debug(len(commentList))
}
}