diff options
author | Jim Hahn <jrh3@att.com> | 2019-07-30 10:33:13 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-07-31 09:23:08 -0400 |
commit | f4118b341c16c93918e4cc57710128e8ad8407ec (patch) | |
tree | f0ec54ab8c19d1b4a217ce608444a1c3d08abc22 /models-interactions/model-actors/actor.appc | |
parent | 396d5e544a29c89d49662a8aa42819b99e8826f0 (diff) |
Use new addTopic() method in models
Replaced ParameterUtils with the use of the new
addTopic(TopicParameterGroup) method.
Used separate addTopicXxx() methods per review comment.
Change-Id: I755b75f986a5c42f01bcad5a22472a46766d192d
Issue-ID: POLICY-1953
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'models-interactions/model-actors/actor.appc')
-rw-r--r-- | models-interactions/model-actors/actor.appc/src/test/java/org/onap/policy/controlloop/actor/appc/AppcServiceProviderTest.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/models-interactions/model-actors/actor.appc/src/test/java/org/onap/policy/controlloop/actor/appc/AppcServiceProviderTest.java b/models-interactions/model-actors/actor.appc/src/test/java/org/onap/policy/controlloop/actor/appc/AppcServiceProviderTest.java index 7567d8aff..249e1fc25 100644 --- a/models-interactions/model-actors/actor.appc/src/test/java/org/onap/policy/controlloop/actor/appc/AppcServiceProviderTest.java +++ b/models-interactions/model-actors/actor.appc/src/test/java/org/onap/policy/controlloop/actor/appc/AppcServiceProviderTest.java @@ -22,6 +22,7 @@ package org.onap.policy.controlloop.actor.appc; import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; @@ -168,6 +169,7 @@ public class AppcServiceProviderTest { assertTrue(jsonRequest.contains(KEY2)); assertTrue(jsonRequest.contains(SUBKEY)); assertTrue(jsonRequest.contains(SUBVALUE)); + assertFalse(jsonRequest.contains(SUBVALUE + ".0")); Response appcResponse = new Response(appcRequest); appcResponse.getStatus().setCode(ResponseCode.SUCCESS.getValue()); |