27 lines
584 B
Go
27 lines
584 B
Go
package ak
|
|
|
|
// func Test_PaginatorCompile(t *testing.T) {
|
|
// req := api.ApiCoreUsersListRequest{}
|
|
// Paginator(req, PaginatorOptions{
|
|
// PageSize: 100,
|
|
// })
|
|
// }
|
|
|
|
// func Test_PaginatorCompileExplicit(t *testing.T) {
|
|
// req := api.ApiCoreUsersListRequest{}
|
|
// Paginator[
|
|
// api.User,
|
|
// api.ApiCoreUsersListRequest,
|
|
// *api.PaginatedUserList,
|
|
// ](req, PaginatorOptions{
|
|
// PageSize: 100,
|
|
// })
|
|
// }
|
|
|
|
// func Test_PaginatorCompileOther(t *testing.T) {
|
|
// req := api.ApiOutpostsProxyListRequest{}
|
|
// Paginator(req, PaginatorOptions{
|
|
// PageSize: 100,
|
|
// })
|
|
// }
|