diff options
author | ezhil <ezhrajam@in.ibm.com> | 2019-01-09 21:45:52 +0530 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2019-01-09 22:55:00 +0000 |
commit | 2c496bab6f10006b28ec1aefae7b88ebd96ae437 (patch) | |
tree | 47eaacb04026af8742413a97ae764a3513e687c6 | |
parent | 751f4579038f62c4c9c6419adca253203f68aefe (diff) |
Added Junit test file for ActionIdentifier.java
Change-Id: Ia9a2a0df159448354ed094875e5ba16316a87432
Issue-ID: APPC-1315
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
-rw-r--r-- | appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/ActionIdentifierTest.java | 44 |
1 files changed, 44 insertions, 0 deletions
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()); + } +} |