X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=openflowplugin-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fimpl%2Fstatistics%2Fservices%2Fcompatibility%2FAbstractCompatibleStatServiceTest.java;h=16d7f35aa1a9598d961013fbf99be192efe49219;hb=b4f4b4b702e2ccd8a7c62fd2a5c184c5b1cbe665;hp=8d6092cdc6ea816c7b9edee32b250fcc21bbe67b;hpb=2373479fdc5a59f1399e50f5de1dc321d429d76b;p=openflowplugin.git diff --git a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/statistics/services/compatibility/AbstractCompatibleStatServiceTest.java b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/statistics/services/compatibility/AbstractCompatibleStatServiceTest.java index 8d6092cdc6..16d7f35aa1 100644 --- a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/statistics/services/compatibility/AbstractCompatibleStatServiceTest.java +++ b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/statistics/services/compatibility/AbstractCompatibleStatServiceTest.java @@ -8,6 +8,9 @@ package org.opendaylight.openflowplugin.impl.statistics.services.compatibility; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; + import com.google.common.util.concurrent.FutureCallback; import com.google.common.util.concurrent.ListenableFuture; import java.math.BigInteger; @@ -17,7 +20,6 @@ import org.junit.Assert; import org.junit.Test; import org.mockito.ArgumentCaptor; import org.mockito.Captor; -import org.mockito.Matchers; import org.mockito.Mock; import org.mockito.Mockito; import org.mockito.stubbing.Answer; @@ -91,20 +93,20 @@ public class AbstractCompatibleStatServiceTest extends AbstractStatsServiceTest return null; }; - Mockito.when(featuresOutput.getVersion()).thenReturn(OFConstants.OFP_VERSION_1_3); + Mockito.lenient().when(featuresOutput.getVersion()).thenReturn(OFConstants.OFP_VERSION_1_3); Mockito.when(rqContextStack.createRequestContext()).thenReturn(rqContext); - Mockito.when(deviceContext.getDeviceState()).thenReturn(deviceState); + Mockito.lenient().when(deviceContext.getDeviceState()).thenReturn(deviceState); Mockito.when(deviceContext.getDeviceInfo()).thenReturn(deviceInfo); Mockito.when(deviceInfo.getNodeId()).thenReturn(NODE_ID); Mockito.when(deviceInfo.getVersion()).thenReturn(OFConstants.OFP_VERSION_1_3); Mockito.doAnswer(closeRequestFutureAnswer).when(multiMsgCollector).endCollecting(null); - Mockito.doAnswer(closeRequestFutureAnswer).when(multiMsgCollector) - .endCollecting(Matchers.any(EventIdentifier.class)); + Mockito.lenient().doAnswer(closeRequestFutureAnswer).when(multiMsgCollector) + .endCollecting(any(EventIdentifier.class)); Mockito.doAnswer(answerVoidToCallback).when(outboundQueueProvider) - .commitEntry(Matchers.eq(42L), requestInput.capture(), Matchers.any(FutureCallback.class)); + .commitEntry(eq(42L), requestInput.capture(), any(FutureCallback.class)); - Mockito.when(translatorLibrary.lookupTranslator(Matchers.any(TranslatorKey.class))).thenReturn(translator); + Mockito.when(translatorLibrary.lookupTranslator(any(TranslatorKey.class))).thenReturn(translator); service = AggregateFlowsInTableService.createWithOook(rqContextStack, deviceContext, new AtomicLong(20L)); } @@ -140,7 +142,7 @@ public class AbstractCompatibleStatServiceTest extends AbstractStatsServiceTest .setFlowCount(new Counter32(12L)) .setPacketCount(new Counter64(BigInteger.valueOf(13L))) .build(); - Mockito.when(translator.translate(Matchers.any(MultipartReply.class), Matchers.eq(deviceInfo), Matchers.any())) + Mockito.when(translator.translate(any(MultipartReply.class), eq(deviceInfo), any())) .thenReturn(aggregatedStats); @@ -152,6 +154,6 @@ public class AbstractCompatibleStatServiceTest extends AbstractStatsServiceTest Assert.assertTrue(result.isSuccessful()); Assert.assertEquals(MultipartType.OFPMPAGGREGATE, requestInput.getValue().getType()); Mockito.verify(notificationPublishService, Mockito.timeout(500)) - .offerNotification(Matchers.any(AggregateFlowStatisticsUpdate.class)); + .offerNotification(any(AggregateFlowStatisticsUpdate.class)); } }