summaryrefslogtreecommitdiffstats
path: root/bpmn/so-bpmn-tasks/src/test/java
diff options
context:
space:
mode:
authorMax Benjamin <max.benjamin@att.com>2020-06-23 17:57:26 +0000
committerGerrit Code Review <gerrit@onap.org>2020-06-23 17:57:26 +0000
commitc919ee261f665b824e716e77b5cc358ec15e44a9 (patch)
tree14a3b73144b66a25818c4207691f277eed8ad963 /bpmn/so-bpmn-tasks/src/test/java
parent49e00e08dbbe4fcb6be9a7c4b9580918cc8f04f9 (diff)
parent2ae848c04b2b455076fe22a965081f61d8705f00 (diff)
Merge "style of test now matches"
Diffstat (limited to 'bpmn/so-bpmn-tasks/src/test/java')
-rw-r--r--bpmn/so-bpmn-tasks/src/test/java/org/onap/so/bpmn/infrastructure/workflow/tasks/listeners/SkipConfigVnfListenerTest.java11
1 files changed, 8 insertions, 3 deletions
diff --git a/bpmn/so-bpmn-tasks/src/test/java/org/onap/so/bpmn/infrastructure/workflow/tasks/listeners/SkipConfigVnfListenerTest.java b/bpmn/so-bpmn-tasks/src/test/java/org/onap/so/bpmn/infrastructure/workflow/tasks/listeners/SkipConfigVnfListenerTest.java
index c23fb03bb9..64c42fa577 100644
--- a/bpmn/so-bpmn-tasks/src/test/java/org/onap/so/bpmn/infrastructure/workflow/tasks/listeners/SkipConfigVnfListenerTest.java
+++ b/bpmn/so-bpmn-tasks/src/test/java/org/onap/so/bpmn/infrastructure/workflow/tasks/listeners/SkipConfigVnfListenerTest.java
@@ -21,7 +21,6 @@
package org.onap.so.bpmn.infrastructure.workflow.tasks.listeners;
import static org.assertj.core.api.Assertions.assertThat;
-import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.util.ArrayList;
import java.util.Arrays;
@@ -30,6 +29,11 @@ import org.camunda.bpm.engine.delegate.DelegateExecution;
import org.camunda.bpm.extension.mockito.delegate.DelegateExecutionFake;
import org.junit.Before;
import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.InjectMocks;
+import org.mockito.Mock;
+import org.mockito.Spy;
+import org.mockito.junit.MockitoJUnitRunner;
import org.onap.so.bpmn.common.BuildingBlockExecution;
import org.onap.so.bpmn.common.DelegateExecutionImpl;
import org.onap.so.bpmn.servicedecomposition.entities.BuildingBlock;
@@ -39,6 +43,7 @@ import org.onap.so.db.catalog.client.CatalogDbClient;
import org.onap.so.serviceinstancebeans.ModelInfo;
import org.onap.so.serviceinstancebeans.RequestDetails;
+@RunWith(MockitoJUnitRunner.class)
public class SkipConfigVnfListenerTest {
private static final String MODEL_UUID = "modelUuidTest";
@@ -46,7 +51,9 @@ public class SkipConfigVnfListenerTest {
private static final String G_CURRENT_SEQUENCE = "gCurrentSequence";
private DelegateExecution execution;
+ @Mock
private CatalogDbClient catalogDbClientMock;
+ @InjectMocks
private SkipConfigVnfListener testedObject;
private BuildingBlockExecution buildingBlockExecution;
@@ -54,8 +61,6 @@ public class SkipConfigVnfListenerTest {
public void setup() {
execution = new DelegateExecutionFake();
buildingBlockExecution = new DelegateExecutionImpl(execution);
- catalogDbClientMock = mock(CatalogDbClient.class);
- testedObject = new SkipConfigVnfListener(catalogDbClientMock);
}
@Test