infoGetter/api/list_test.go

17 lines
197 B
Go

package api
import (
"testing"
)
func TestSingleList(t *testing.T) {
body := ListBody{
TagType: "0",
Keyword: "",
PageNum: 1,
PageSize: 10,
PersonType: 0,
}
list(body)
}