aboutsummaryrefslogtreecommitdiffstats
path: root/models-interactions/model-impl/so
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2020-04-08 10:04:29 -0400
committerJim Hahn <jrh3@att.com>2020-04-08 10:17:53 -0400
commitb2e61a292bc8a9edbed1569ab5655e2ee17a8f3b (patch)
tree402ed27ef8c89e2b0333e3578bad941ba7c3529c /models-interactions/model-impl/so
parent9b3ff5f270572a6760ff07dda9577cdadb53b088 (diff)
More sonar fixes in models
Addressed the following sonar issues: - missing assert in junit - duplicate code blocks - fixed those in the simulators - leaving the others in the concept classes for Liam/"G" Issue-ID: POLICY-2305 Change-Id: Icfe80afb378b4cdec4de3d33d0e33227e04845d8 Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'models-interactions/model-impl/so')
-rw-r--r--models-interactions/model-impl/so/src/test/java/org/onap/policy/so/DemoTest.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/models-interactions/model-impl/so/src/test/java/org/onap/policy/so/DemoTest.java b/models-interactions/model-impl/so/src/test/java/org/onap/policy/so/DemoTest.java
index d496455eb..e45ee0aea 100644
--- a/models-interactions/model-impl/so/src/test/java/org/onap/policy/so/DemoTest.java
+++ b/models-interactions/model-impl/so/src/test/java/org/onap/policy/so/DemoTest.java
@@ -21,9 +21,10 @@
package org.onap.policy.so;
+import static org.junit.Assert.assertNotNull;
+
import java.util.HashMap;
import java.util.Map;
-
import org.junit.Test;
import org.onap.policy.so.util.Serialization;
import org.slf4j.Logger;
@@ -103,6 +104,7 @@ public class DemoTest {
logger.debug(Serialization.gsonPretty.toJson(request));
+ assertNotNull(request);
}
@Test
@@ -166,6 +168,8 @@ public class DemoTest {
request.getRequestDetails().getRelatedInstanceList().add(relatedInstanceListElement2);
logger.debug(Serialization.gsonPretty.toJson(request));
+
+ assertNotNull(request);
}
}