aboutsummaryrefslogtreecommitdiffstats
path: root/appc-core
diff options
context:
space:
mode:
authorSandeep J <sandeejh@in.ibm.com>2019-03-04 13:19:55 +0530
committerJoss Armstrong <joss.armstrong@ericsson.com>2019-03-07 14:49:01 +0000
commit7ba77298cc3e45bc215b236414bc406466b1aeec (patch)
treeb3b069b20e1552faebd7834f400380a6bb315b61 /appc-core
parent8305b22009a8f257e91585f91cfa5d5ed6bc4164 (diff)
added test cases to TestStructuredPropertyTestHelp
to increase code coverage Issue-ID: APPC-1086 Change-Id: I4b1afa01afabf9bdd95ea6b80f3af335523155b4 Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
Diffstat (limited to 'appc-core')
-rw-r--r--appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/TestStructuredPropertyHelper.java26
1 files changed, 19 insertions, 7 deletions
diff --git a/appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/TestStructuredPropertyHelper.java b/appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/TestStructuredPropertyHelper.java
index 1a4527c70..49ca5a152 100644
--- a/appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/TestStructuredPropertyHelper.java
+++ b/appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/TestStructuredPropertyHelper.java
@@ -6,23 +6,22 @@
* ================================================================================
* Copyright (C) 2017 Amdocs
* =============================================================================
- * Modifications Copyright (C) 2018 IBM.
+ * Modifications Copyright (C) 2018-2019 IBM.
* ================================================================================
* Modifications Copyright (C) 2019 Ericsson
* =============================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
- *
- * ============LICENSE_END=========================================================
+ *============LICENSE_END=========================================================
*/
package org.onap.appc.util;
@@ -284,9 +283,9 @@ public class TestStructuredPropertyHelper {
Node node1 = new Node();
node1.setName("testName2");
node1.setValue("testValue");
- assertFalse(node0.equals(node1));
+ assertFalse(node0.equals(node1));
}
-
+
@Test
public void testCompareTo()
{
@@ -297,4 +296,17 @@ public class TestStructuredPropertyHelper {
assertEquals(-1, node0.compareTo(node1));
assertEquals(0, node0.compareTo(node0));
}
+
+ @Test
+ public void testHashCode()
+ {
+ Node node0 = new Node();
+ node0.setName("testName");
+ node0.setValue("testValue");
+ Node node1 = new Node();
+ node1.setName("testName");
+ node1.setValue("testValue");
+ assertTrue(node0.hashCode() == node1.hashCode());
+ }
+
}