Added Junit test file for ActionIdentifier.java 68/75568/2
authorezhil <ezhrajam@in.ibm.com>
Wed, 9 Jan 2019 16:15:52 +0000 (21:45 +0530)
committerPatrick Brady <patrick.brady@att.com>
Wed, 9 Jan 2019 22:55:00 +0000 (22:55 +0000)
Change-Id: Ia9a2a0df159448354ed094875e5ba16316a87432
Issue-ID: APPC-1315
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ActionIdentifierTest.java [new file with mode: 0644]

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 (file)
index 0000000..8d28f43
--- /dev/null
@@ -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());
+    }
+}