use of fixtures.paging.models.CustomParameterGroup in project autorest.java by Azure.
the class PagingTests method getMultiplePagesFragmentWithGroupingNextLink.
@Test
public void getMultiplePagesFragmentWithGroupingNextLink() throws Exception {
List<Product> response = client.pagings().getMultiplePagesFragmentWithGroupingNextLink(new CustomParameterGroup().withTenant("test_user").withApiVersion("1.6"));
Assert.assertEquals(10, response.size());
}
Aggregations