This commit is contained in:
邹宗楠
2022-08-29 16:17:40 +08:00
parent 9e139e79d7
commit c3d3ed8f16
6 changed files with 28 additions and 9 deletions

View File

@@ -155,3 +155,11 @@ func TestCommentScore(t *testing.T) {
}
t.Log(utils.Format4Output(result, false))
}
func TestGetBoundList(t *testing.T) {
result, err := api.GetBoundList("")
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}