diff options
author | Benjamin, Max <max.benjamin@att.com> | 2020-06-19 17:07:01 -0400 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@att.com> | 2020-06-23 12:04:07 -0400 |
commit | 2ae848c04b2b455076fe22a965081f61d8705f00 (patch) | |
tree | 79f7a7d9d3796b944f3365e0016c5e99898ca475 /bpmn/so-bpmn-tasks | |
parent | 0abec191b0645a80c9bc5df4af3423a9377b83db (diff) |
style of test now matches
updated unit test to match other tests in the codebase
Issue-ID: SO-2992
Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com>
Change-Id: Icf844d9c07105d23646681a3b29eeae06a03e91c
Diffstat (limited to 'bpmn/so-bpmn-tasks')
3 files changed, 10 insertions, 7 deletions
diff --git a/bpmn/so-bpmn-tasks/pom.xml b/bpmn/so-bpmn-tasks/pom.xml index e510a2928a..dec9560574 100644 --- a/bpmn/so-bpmn-tasks/pom.xml +++ b/bpmn/so-bpmn-tasks/pom.xml @@ -119,7 +119,7 @@ </execute> </action> </pluginExecution> - <pluginExecution> + <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> @@ -132,7 +132,7 @@ <execute /> </action> </pluginExecution> - <pluginExecution> + <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> diff --git a/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/listeners/SkipConfigVnfListener.java b/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/listeners/SkipConfigVnfListener.java index cf5226ad78..6589ae77f5 100644 --- a/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/listeners/SkipConfigVnfListener.java +++ b/bpmn/so-bpmn-tasks/src/main/java/org/onap/so/bpmn/infrastructure/workflow/tasks/listeners/SkipConfigVnfListener.java @@ -42,6 +42,4 @@ public class SkipConfigVnfListener implements FlowManipulator { } } - - } 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 |