diff options
author | lapentafd <francesco.lapenta@est.tech> | 2021-03-09 15:13:05 +0000 |
---|---|---|
committer | lapentafd <francesco.lapenta@est.tech> | 2021-03-15 11:01:09 +0000 |
commit | 0f18850ed482e71db9d61fa2656e5e84c2f61f74 (patch) | |
tree | 548374da12956cf2c385ad598421d81832919657 /models-base | |
parent | 1c3fb9a68d8d27c4bdc3e177550a031b8b3ec5b0 (diff) |
Fix Sonar Issues on policy-models-tosca
Tests refactoring to reduce number of assertions
Removed lines 167-169 in PfKeyImplTest
Issue-ID: POLICY-3094
Change-Id: I94ef11068811c81108b0fbf3e5b878d02ab25306
Signed-off-by: lapentafd <francesco.lapenta@est.tech>
Diffstat (limited to 'models-base')
-rw-r--r-- | models-base/src/test/java/org/onap/policy/models/base/PfKeyImplTest.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/models-base/src/test/java/org/onap/policy/models/base/PfKeyImplTest.java b/models-base/src/test/java/org/onap/policy/models/base/PfKeyImplTest.java index 54edc8710..2afc94b53 100644 --- a/models-base/src/test/java/org/onap/policy/models/base/PfKeyImplTest.java +++ b/models-base/src/test/java/org/onap/policy/models/base/PfKeyImplTest.java @@ -26,7 +26,6 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException import static org.assertj.core.api.Assertions.assertThatThrownBy; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNotEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; @@ -164,10 +163,6 @@ public class PfKeyImplTest { assertEquals(0, someKey0.compareTo(someKey0)); assertEquals(-36, someKey0.compareTo(new DummyPfKey())); - assertNotEquals(someKey0, null); - assertEquals(someKey0, (Object) someKey0); - assertNotEquals(someKey0, (Object) new DummyPfKey()); - MyKey someKey8 = new MyKey(); someKey8.setVersion(VERSION001); assertFalse(someKey8.isNullKey()); |