diff options
author | Jim Hahn <jrh3@att.com> | 2020-07-21 09:55:38 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-07-21 16:25:53 -0400 |
commit | 248a660d61fa03caa4710cf8cfe144eb245b807b (patch) | |
tree | 9f7c9aa7fda6d9ab9977bf2398a0136a787dc62a /models-interactions/model-impl/guard/src/test | |
parent | f203526d0f86d385976da394bd1f0f918e4445d9 (diff) |
Fix some sonars in policy-models
Fixed the following sonar issues in some of the project directories:
- use assertNull, assertEquals, etc.
- swap assertEquals arguments
- extract a constant
- don't invoke toString() in logger calls
- TODOs
- generic types
Issue-ID: POLICY-2714
Change-Id: Id8803f9bf617ea9fc173a67b8606600709b55bdc
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'models-interactions/model-impl/guard/src/test')
-rw-r--r-- | models-interactions/model-impl/guard/src/test/java/org/onap/policy/guard/OperationsHistoryTest.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/models-interactions/model-impl/guard/src/test/java/org/onap/policy/guard/OperationsHistoryTest.java b/models-interactions/model-impl/guard/src/test/java/org/onap/policy/guard/OperationsHistoryTest.java index f25ab86aa..32827b04b 100644 --- a/models-interactions/model-impl/guard/src/test/java/org/onap/policy/guard/OperationsHistoryTest.java +++ b/models-interactions/model-impl/guard/src/test/java/org/onap/policy/guard/OperationsHistoryTest.java @@ -19,7 +19,7 @@ package org.onap.policy.guard; import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotEquals; import static org.junit.Assert.assertTrue; import java.util.Date; @@ -61,9 +61,12 @@ public class OperationsHistoryTest { int hc = dao.hashCode(); dao.setId(101L); - assertTrue(hc != dao.hashCode()); + assertNotEquals(hc, dao.hashCode()); - assertTrue(dao.equals(dao)); - assertFalse(dao.equals(new OperationsHistory())); + /* + * Disabling sonar to test equals(). + */ + assertEquals(dao, dao); // NOSONAR + assertNotEquals(dao, new OperationsHistory()); } } |