diff options
author | JvD_Ericsson <jeff.van.dam@est.tech> | 2020-07-17 14:08:52 +0100 |
---|---|---|
committer | JvD_Ericsson <jeff.van.dam@est.tech> | 2020-07-21 15:35:05 +0100 |
commit | 53b9324d6ec14ef75dc1f943c19b3ea1a46bc8ab (patch) | |
tree | a0fa4cd006a10b4a2ea8a57194bf44d75f51d973 /services/services-engine/src | |
parent | cb4b9a2e27266c03fa6aa82165608999bf21e36a (diff) |
Fix assertTrue in apex-pdp/model apex-pdp/plugins, apex-pdp/services and apex-pdp/testsuites
Replace assertTrue with assertEquals and assertFalse with
assertNotEquals in apex-pdp/model, apex-pdp/plugins, apex-pdp/services
and apex-pdp/testsuites
Issue-ID: POLICY-2690
Change-Id: If088371cf012d5648e04ade2aa4d49b38945f6d2
Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech>
Diffstat (limited to 'services/services-engine/src')
-rw-r--r-- | services/services-engine/src/test/java/org/onap/policy/apex/service/engine/main/ApexMainTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/services-engine/src/test/java/org/onap/policy/apex/service/engine/main/ApexMainTest.java b/services/services-engine/src/test/java/org/onap/policy/apex/service/engine/main/ApexMainTest.java index 0a34b1164..731baf5ef 100644 --- a/services/services-engine/src/test/java/org/onap/policy/apex/service/engine/main/ApexMainTest.java +++ b/services/services-engine/src/test/java/org/onap/policy/apex/service/engine/main/ApexMainTest.java @@ -166,7 +166,7 @@ public class ApexMainTest { apexMain.shutdown(); final String outString = outContent.toString(); assertTrue(outString.contains("I/O Parameters for id2:v2 has duplicates. So this policy is not executed")); - assertTrue(apexMain.getApexParametersMap().size() == 1); // only id1:v1 is kept in the map, id2:v2 failed + assertEquals(1, apexMain.getApexParametersMap().size()); // only id1:v1 is kept in the map, id2:v2 failed } @Test |