Unit Testing Spring MVC Controller that returns PagedResources
问题 I am building an application with Spring Boot 1.4.1, Spring Data Jpa and Spring Data Test. I have the following controller with which I want to return paged accounts: @RequestMapping(method=RequestMethod.GET) public HttpEntity<PagedResources<Account>> getAccounts( Pageable pageable, PagedResourcesAssembler assembler, @RequestParam(value="name", required = false) String name, @RequestParam(value="username", required = false) String username, @RequestParam(value="email", required = false)