infoGetter/api/list_test.go

17 lines
197 B
Go
Raw Normal View History

2021-12-02 13:19:43 +08:00
package api
import (
"testing"
)
func TestSingleList(t *testing.T) {
body := ListBody{
TagType: "0",
Keyword: "",
PageNum: 1,
PageSize: 10,
PersonType: 0,
}
list(body)
}