Upgrade testing frameworks to latest not-vulnerable versions
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / components / impl / instance / ComponentInstanceChangeOperationOrchestratorTest.java
index cd925cb..399227b 100644 (file)
@@ -1,3 +1,23 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
+ * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
 package org.openecomp.sdc.be.components.impl.instance;
 
 import org.junit.Before;
@@ -11,7 +31,7 @@ import org.openecomp.sdc.be.model.Resource;
 
 import static java.util.Arrays.asList;
 import static org.assertj.core.api.Assertions.assertThat;
-import static org.mockito.Mockito.verifyZeroInteractions;
+import static org.mockito.Mockito.verifyNoInteractions;
 import static org.mockito.Mockito.when;
 
 @RunWith(MockitoJUnitRunner.class)
@@ -39,7 +59,7 @@ public class ComponentInstanceChangeOperationOrchestratorTest {
         when(componentInstanceChangeOperation1.onChangeVersion(CONTAINER, PREV_VERSION, NEW_VERSION)).thenReturn(ActionStatus.GENERAL_ERROR);
         ActionStatus actionStatus = testInstance.doPostChangeVersionOperations(CONTAINER, PREV_VERSION, NEW_VERSION);
         assertThat(actionStatus).isEqualTo(ActionStatus.GENERAL_ERROR);
-        verifyZeroInteractions(componentInstanceChangeOperation2, componentInstanceChangeOperation3);
+        verifyNoInteractions(componentInstanceChangeOperation2, componentInstanceChangeOperation3);
     }
 
     @Test
@@ -48,7 +68,7 @@ public class ComponentInstanceChangeOperationOrchestratorTest {
         when(componentInstanceChangeOperation2.onChangeVersion(CONTAINER, PREV_VERSION, NEW_VERSION)).thenReturn(ActionStatus.GENERAL_ERROR);
         ActionStatus actionStatus = testInstance.doPostChangeVersionOperations(CONTAINER, PREV_VERSION, NEW_VERSION);
         assertThat(actionStatus).isEqualTo(ActionStatus.GENERAL_ERROR);
-        verifyZeroInteractions(componentInstanceChangeOperation3);
+        verifyNoInteractions(componentInstanceChangeOperation3);
     }
 
     @Test
@@ -74,7 +94,7 @@ public class ComponentInstanceChangeOperationOrchestratorTest {
         when(componentInstanceChangeOperation1.onDelete(CONTAINER, DELETED_INS_ID)).thenReturn(ActionStatus.GENERAL_ERROR);
         ActionStatus actionStatus = testInstance.doOnDeleteInstanceOperations(CONTAINER, DELETED_INS_ID);
         assertThat(actionStatus).isEqualTo(ActionStatus.GENERAL_ERROR);
-        verifyZeroInteractions(componentInstanceChangeOperation2, componentInstanceChangeOperation3);
+        verifyNoInteractions(componentInstanceChangeOperation2, componentInstanceChangeOperation3);
     }
 
     @Test
@@ -83,7 +103,7 @@ public class ComponentInstanceChangeOperationOrchestratorTest {
         when(componentInstanceChangeOperation2.onDelete(CONTAINER, DELETED_INS_ID)).thenReturn(ActionStatus.GENERAL_ERROR);
         ActionStatus actionStatus = testInstance.doOnDeleteInstanceOperations(CONTAINER, DELETED_INS_ID);
         assertThat(actionStatus).isEqualTo(ActionStatus.GENERAL_ERROR);
-        verifyZeroInteractions(componentInstanceChangeOperation3);
+        verifyNoInteractions(componentInstanceChangeOperation3);
     }
 
     @Test
@@ -103,4 +123,4 @@ public class ComponentInstanceChangeOperationOrchestratorTest {
         ActionStatus actionStatus = testInstance.doOnDeleteInstanceOperations(CONTAINER, DELETED_INS_ID);
         assertThat(actionStatus).isEqualTo(ActionStatus.OK);
     }
-}
\ No newline at end of file
+}