From 059adbc2c51c79d97aeb19faac81f1128529e4f7 Mon Sep 17 00:00:00 2001 From: "saul.gill" Date: Tue, 27 Jun 2023 14:23:26 +0100 Subject: Removing old implementation of participant restart Particpant will be set as offline at deregister No ac states will be altered at deregister Issue-ID: POLICY-4742 Change-Id: Ifb297805ed4b97938b7f92855e30f978d474b648 Signed-off-by: saul.gill --- .../clamp/models/acm/persistence/provider/ParticipantProviderTest.java | 3 --- 1 file changed, 3 deletions(-) (limited to 'models/src/test') diff --git a/models/src/test/java/org/onap/policy/clamp/models/acm/persistence/provider/ParticipantProviderTest.java b/models/src/test/java/org/onap/policy/clamp/models/acm/persistence/provider/ParticipantProviderTest.java index 968ad31bb..22523e2a7 100644 --- a/models/src/test/java/org/onap/policy/clamp/models/acm/persistence/provider/ParticipantProviderTest.java +++ b/models/src/test/java/org/onap/policy/clamp/models/acm/persistence/provider/ParticipantProviderTest.java @@ -252,7 +252,6 @@ class ParticipantProviderTest { assertThrows(NullPointerException.class, () -> participantProvider.deleteParticipant(null)); assertThrows(NullPointerException.class, () -> participantProvider.getAutomationCompositionElements(null)); assertThrows(NullPointerException.class, () -> participantProvider.getAcNodeTemplateStates(null)); - assertThrows(NullPointerException.class, () -> participantProvider.resetParticipantAcElementState(null)); } @Test @@ -287,8 +286,6 @@ class ParticipantProviderTest { assertThat(e.getLockState().equals(LockState.LOCKED)); }); - participantProvider.resetParticipantAcElementState(UUID.randomUUID()); - acElementList.get(0).stream().forEach(e -> { assertThat(e.getDeployState().equals(DeployState.UNDEPLOYED)); assertThat(e.getLockState().equals(LockState.NONE)); -- cgit 1.2.3-korg