aboutsummaryrefslogtreecommitdiffstats
path: root/models/src/test/java/org/onap/policy/clamp/models/acm/concepts/AcElementStatisticsTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'models/src/test/java/org/onap/policy/clamp/models/acm/concepts/AcElementStatisticsTest.java')
-rw-r--r--models/src/test/java/org/onap/policy/clamp/models/acm/concepts/AcElementStatisticsTest.java19
1 files changed, 9 insertions, 10 deletions
diff --git a/models/src/test/java/org/onap/policy/clamp/models/acm/concepts/AcElementStatisticsTest.java b/models/src/test/java/org/onap/policy/clamp/models/acm/concepts/AcElementStatisticsTest.java
index ee79b27b7..070fa8dc8 100644
--- a/models/src/test/java/org/onap/policy/clamp/models/acm/concepts/AcElementStatisticsTest.java
+++ b/models/src/test/java/org/onap/policy/clamp/models/acm/concepts/AcElementStatisticsTest.java
@@ -1,6 +1,6 @@
/*-
* ============LICENSE_START=======================================================
- * Copyright (C) 2021 Nordix Foundation.
+ * Copyright (C) 2021-2022 Nordix Foundation.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,9 +22,9 @@ package org.onap.policy.clamp.models.acm.concepts;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNotEquals;
-import static org.junit.Assert.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNotEquals;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
import java.time.Instant;
import java.util.UUID;
@@ -39,18 +39,17 @@ class AcElementStatisticsTest {
assertThat(aces0.toString()).contains("AcElementStatistics(");
assertThat(aces0.hashCode()).isNotZero();
- assertEquals(true, aces0.equals(aces0));
- assertEquals(false, aces0.equals(null));
-
+ assertEquals(aces0, aces0);
+ assertNotEquals(null, aces0);
AcElementStatistics aces1 = new AcElementStatistics();
aces1.setParticipantId(new ToscaConceptIdentifier("defName", "0.0.1"));
aces1.setTimeStamp(Instant.now());
assertThat(aces1.toString()).contains("AcElementStatistics(");
- assertEquals(false, aces1.hashCode() == 0);
- assertEquals(false, aces1.equals(aces0));
- assertEquals(false, aces1.equals(null));
+ assertNotEquals(0, aces1.hashCode());
+ assertNotEquals(aces1, aces0);
+ assertNotEquals(null, aces1);
assertNotEquals(aces1, aces0);