DATAJDBC-503 - Adapt to Mockito 3.3 changes.

Mockito reports falsely unnecessary stubbings so we're switching to the silent runner for these cases.
This commit is contained in:
Mark Paluch
2020-03-11 09:00:20 +01:00
parent 4371aec0f9
commit 0ba523c780

View File

@@ -53,7 +53,7 @@ import org.springframework.test.util.ReflectionTestUtils;
* @author Mark Paluch
* @author Evgeni Dimitrov
*/
@RunWith(MockitoJUnitRunner.class)
@RunWith(MockitoJUnitRunner.Silent.class)
public class JdbcRepositoryFactoryBeanUnitTests {
JdbcRepositoryFactoryBean<DummyEntityRepository, DummyEntity, Long> factoryBean;