diff options
author | Ravindra Bakkamanthala <rb7147@att.com> | 2017-05-23 14:56:12 -0400 |
---|---|---|
committer | Ravindra Bakkamanthala <rb7147@att.com> | 2017-05-23 16:49:56 -0400 |
commit | 87c95be02a8a4d77e165dede90777e811b59dcae (patch) | |
tree | 4712199fc3520b530dda0c4d3b074c327df547f2 /ECOMP-PAP-REST/src/test | |
parent | 7e547eaa55920dfbc9691eab33bb728395b50cf2 (diff) |
Commit includes ControlLoopPolicy API and bugfixes
Change-Id: I3e18bb8b4c31a0d908bb0cff4c85e2a3fb450a63
Signed-off-by: Ravindra Bakkamanthala <rb7147@att.com>
Diffstat (limited to 'ECOMP-PAP-REST/src/test')
-rw-r--r-- | ECOMP-PAP-REST/src/test/java/org/openecomp/policy/pap/ia/DbAuditCompareEntriesTest.java | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/ECOMP-PAP-REST/src/test/java/org/openecomp/policy/pap/ia/DbAuditCompareEntriesTest.java b/ECOMP-PAP-REST/src/test/java/org/openecomp/policy/pap/ia/DbAuditCompareEntriesTest.java index 6ab3d3588..d3b5cbbea 100644 --- a/ECOMP-PAP-REST/src/test/java/org/openecomp/policy/pap/ia/DbAuditCompareEntriesTest.java +++ b/ECOMP-PAP-REST/src/test/java/org/openecomp/policy/pap/ia/DbAuditCompareEntriesTest.java @@ -181,8 +181,8 @@ public class DbAuditCompareEntriesTest { dbAudit.writeAuditDebugLog(className, resourceName1, resourceName2, entry1, entry2); - HashMap<Object, Object> myEntries = new HashMap<Object, Object>(); - HashMap<Object, Object> theirEntries = new HashMap<Object, Object>(); + HashMap<Object, Object> myEntries = new HashMap<>(); + HashMap<Object, Object> theirEntries = new HashMap<>(); myEntries.put("pdp1", entry1); theirEntries.put("pdp1", entry2); @@ -205,8 +205,8 @@ public class DbAuditCompareEntriesTest { */ entry2.setDesignated(true); - myEntries = new HashMap<Object, Object>(); - theirEntries = new HashMap<Object, Object>(); + myEntries = new HashMap<>(); + theirEntries = new HashMap<>(); myEntries.put("pdp1", entry1); theirEntries.put("pdp1", entry2); @@ -240,8 +240,8 @@ public class DbAuditCompareEntriesTest { // Clone the first entry entry2 = SerializationUtils.clone(entry1); - HashMap<Object, Object> myEntries = new HashMap<Object, Object>(); - HashMap<Object, Object> theirEntries = new HashMap<Object, Object>(); + HashMap<Object, Object> myEntries = new HashMap<>(); + HashMap<Object, Object> theirEntries = new HashMap<>(); myEntries.put("pdp1", entry1); theirEntries.put("pdp1", entry2); @@ -264,8 +264,8 @@ public class DbAuditCompareEntriesTest { entry2.setFlag("flag2"); - myEntries = new HashMap<Object, Object>(); - theirEntries = new HashMap<Object, Object>(); + myEntries = new HashMap<>(); + theirEntries = new HashMap<>(); myEntries.put("pdp1", entry1); theirEntries.put("pdp1", entry2); @@ -300,8 +300,8 @@ public class DbAuditCompareEntriesTest { // Clone the first entry entry2 = SerializationUtils.clone(entry1); - HashMap<Object, Object> myEntries = new HashMap<Object, Object>(); - HashMap<Object, Object> theirEntries = new HashMap<Object, Object>(); + HashMap<Object, Object> myEntries = new HashMap<>(); + HashMap<Object, Object> theirEntries = new HashMap<>(); myEntries.put("pdp1", entry1); theirEntries.put("pdp1", entry2); @@ -324,8 +324,8 @@ public class DbAuditCompareEntriesTest { entry2.setAdminState("unlocked"); - myEntries = new HashMap<Object, Object>(); - theirEntries = new HashMap<Object, Object>(); + myEntries = new HashMap<>(); + theirEntries = new HashMap<>(); myEntries.put("pdp1", entry1); theirEntries.put("pdp1", entry2); @@ -379,8 +379,8 @@ public class DbAuditCompareEntriesTest { entry2.setFpcCount(321L); - myEntries = new HashMap<Object, Object>(); - theirEntries = new HashMap<Object, Object>(); + myEntries = new HashMap<>(); + theirEntries = new HashMap<>(); myEntries.put("pdp1", entry1); theirEntries.put("pdp1", entry2); @@ -414,8 +414,8 @@ public class DbAuditCompareEntriesTest { // Clone the first entry entry2 = SerializationUtils.clone(entry1); - HashMap<Object, Object> myEntries = new HashMap<Object, Object>(); - HashMap<Object, Object> theirEntries = new HashMap<Object, Object>(); + HashMap<Object, Object> myEntries = new HashMap<>(); + HashMap<Object, Object> theirEntries = new HashMap<>(); myEntries.put("pdp1", entry1); theirEntries.put("pdp1", entry2); @@ -436,8 +436,8 @@ public class DbAuditCompareEntriesTest { entry2.setSite("site_1a"); - myEntries = new HashMap<Object, Object>(); - theirEntries = new HashMap<Object, Object>(); + myEntries = new HashMap<>(); + theirEntries = new HashMap<>(); myEntries.put("pdp1", entry1); theirEntries.put("pdp1", entry2); |