I'm getting an UnfinishedStubbingException
with the following code:
Mockito.when(repository.findAll(Mockito.any(Pageable.class)))
.thenReturn(BusinessEntityMockGenerator.createPageResponse(bd, null));
The strange thing is I was not getting this error with Spring Boot 1.3. I just upgraded to Spring Boot 2.0 and now I'm getting this error.
Any ideas? Thanks!
EDIT: It's also giving the error Pageable must not be null!
.