HomeControllerTests gets me "ImageRepository bean not found". For me this version of annotation fixed the problem: @MockBeans({ @MockBean(ImageService.class), @MockBean(ImageRepository.class) }) public class HomeControllerTests { @Autowired WebTestClient webClient; @Autowired ImageService imageService;