diff options
author | Liam Fallon <liam.fallon@est.tech> | 2021-07-23 08:23:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-07-23 08:23:27 +0000 |
commit | 096c230515b1dc2f773e8742725c9e78444ee4f3 (patch) | |
tree | 4969648e8d643465cfc2dcf9a9d3a95220c4068d /models/src/test | |
parent | 9218688ef4ad609319a15310c1a87058d042adc1 (diff) | |
parent | 22a633cd19d236a6e73d849b3198f654ceb0fc48 (diff) |
Merge "Rename ParticipantControlLoopUpdate message"
Diffstat (limited to 'models/src/test')
-rw-r--r-- | models/src/test/java/org/onap/policy/clamp/controlloop/models/messages/dmaap/participant/ControlLoopUpdateTest.java (renamed from models/src/test/java/org/onap/policy/clamp/controlloop/models/messages/dmaap/participant/ParticipantControlLoopUpdateTest.java) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/models/src/test/java/org/onap/policy/clamp/controlloop/models/messages/dmaap/participant/ParticipantControlLoopUpdateTest.java b/models/src/test/java/org/onap/policy/clamp/controlloop/models/messages/dmaap/participant/ControlLoopUpdateTest.java index 5d87095ba..ac164e32b 100644 --- a/models/src/test/java/org/onap/policy/clamp/controlloop/models/messages/dmaap/participant/ParticipantControlLoopUpdateTest.java +++ b/models/src/test/java/org/onap/policy/clamp/controlloop/models/messages/dmaap/participant/ControlLoopUpdateTest.java @@ -35,12 +35,12 @@ import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate; /** * Test the copy constructor. */ -class ParticipantControlLoopUpdateTest { +class ControlLoopUpdateTest { @Test void testCopyConstructor() { - assertThatThrownBy(() -> new ParticipantControlLoopUpdate(null)).isInstanceOf(NullPointerException.class); + assertThatThrownBy(() -> new ControlLoopUpdate(null)).isInstanceOf(NullPointerException.class); - ParticipantControlLoopUpdate orig = new ParticipantControlLoopUpdate(); + ControlLoopUpdate orig = new ControlLoopUpdate(); // verify with all values ToscaConceptIdentifier id = new ToscaConceptIdentifier(); id.setName("id"); @@ -60,7 +60,7 @@ class ParticipantControlLoopUpdateTest { orig.setControlLoopDefinition(toscaServiceTemplate); orig.setControlLoop(controlLoop); - ParticipantControlLoopUpdate other = new ParticipantControlLoopUpdate(orig); + ControlLoopUpdate other = new ControlLoopUpdate(orig); assertEquals(removeVariableFields(orig.toString()), removeVariableFields(other.toString())); |