In SpringBoot 3.3 @SpyBean can able to mock and spy but after upgrading to Springboot 3.4 @MockitoSpyBean can able to spy but cannot able to mock #44480
Labels
for: external-project
For an external project and not something we can fix
status: duplicate
A duplicate of another issue
In springboot 3.3
@SpyBean
private ReprocessBackOffImpl reprocessBackOffImpl;
doThrow(exception).when(reprocessBackOffImpl).assertPreConditions(context);
Its working fine....
but after upgrading to Springboot 3.4
@MockitoSpyBean
private ReprocessBackOffImpl reprocessBackOffImpl;
doThrow(exception).when(reprocessBackOffImpl).assertPreConditions(context);
getting below exception
The text was updated successfully, but these errors were encountered: