From 2c496bab6f10006b28ec1aefae7b88ebd96ae437 Mon Sep 17 00:00:00 2001 From: ezhil Date: Wed, 9 Jan 2019 21:45:52 +0530 Subject: Added Junit test file for ActionIdentifier.java Change-Id: Ia9a2a0df159448354ed094875e5ba16316a87432 Issue-ID: APPC-1315 Signed-off-by: ezhil --- .../appc/seqgen/objects/ActionIdentifierTest.java | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ActionIdentifierTest.java diff --git a/appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ActionIdentifierTest.java b/appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ActionIdentifierTest.java new file mode 100644 index 000000000..8d28f43c9 --- /dev/null +++ b/appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ActionIdentifierTest.java @@ -0,0 +1,44 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP : APPC + * ================================================================================ + * Copyright (C) 2019 IBM. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * ============LICENSE_END========================================================= + */ +package org.onap.appc.seqgen.objects; + +import org.junit.Test; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; + +public class ActionIdentifierTest { + + @Test + public void testSettersAndGetters() { + ActionIdentifier actionId = new ActionIdentifier(); + actionId.setvServerId("vserverId"); + assertNotNull("vserverId", actionId.getvServerId()); + assertEquals("vserverId", actionId.getvServerId()); + + actionId.setVnfcName("vnfcName"); + assertNotNull("vnfcName", actionId.getVnfcName()); + assertEquals("vnfcName", actionId.getVnfcName()); + + actionId.setVnfId("vnfId"); + assertNotNull("vnfId", actionId.getVnfId()); + assertEquals("vnfId", actionId.getVnfId()); + } +} -- cgit 1.2.3-korg