aboutsummaryrefslogtreecommitdiffstats
path: root/ms/vlantag-api
diff options
context:
space:
mode:
authorSandeep J <sandeejh@in.ibm.com>2018-09-19 15:11:53 +0530
committerSandeep J <sandeejh@in.ibm.com>2018-09-19 15:12:32 +0530
commitbcf5b3cda8f4b72042cc76cfc6d75c2080a76ac0 (patch)
tree37d483df2596e05e67a8833245a9273373eae6c4 /ms/vlantag-api
parent758bc233c125d2ffec0bf16618747af747aafa45 (diff)
added test fle to cover AsignVlanTagResponseOutput
to increase code coverage Issue-ID: CCSDK-552 Change-Id: I3ce46de4c532c9dbc69900c3ac2da90388ab2820 Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
Diffstat (limited to 'ms/vlantag-api')
-rw-r--r--ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/AssignVlanTagResponseOutputTest.java77
1 files changed, 77 insertions, 0 deletions
diff --git a/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/AssignVlanTagResponseOutputTest.java b/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/AssignVlanTagResponseOutputTest.java
new file mode 100644
index 00000000..3cfed1d2
--- /dev/null
+++ b/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/AssignVlanTagResponseOutputTest.java
@@ -0,0 +1,77 @@
+/*******************************************************************************
+ * Copyright © 2017-2018 AT&T Intellectual Property.
+ *
+ * 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.
+ ******************************************************************************/
+
+package org.onap.ccsdk.apps.ms.vlangtagapi.core.model;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.ccsdk.apps.ms.vlantagapi.core.model.AssignVlanTagResponseOutput;
+import org.onap.ccsdk.apps.ms.vlantagapi.core.model.VlanTag;
+
+public class AssignVlanTagResponseOutputTest {
+
+ private AssignVlanTagResponseOutput assignVlanTagResponseOutput;
+ private AssignVlanTagResponseOutput assignVlanTagResponseOutput1;
+
+ @Before
+ public void setUp()
+ {
+ assignVlanTagResponseOutput= new AssignVlanTagResponseOutput();
+ assignVlanTagResponseOutput1= new AssignVlanTagResponseOutput();
+ }
+
+ @Test
+ public void testResourceName()
+ {
+ assignVlanTagResponseOutput.resourceName("resourceName");
+ assertEquals("resourceName", assignVlanTagResponseOutput.getResourceName());
+ }
+
+ @Test
+ public void testResourceValue()
+ {
+ assignVlanTagResponseOutput.resourceValue("resourceValue");
+ assertEquals("resourceValue", assignVlanTagResponseOutput.getResourceValue());
+ }
+
+ @Test
+ public void testResourceVlanRole()
+ {
+ assignVlanTagResponseOutput.resourceVlanRole("resourceVlanRole");
+ assertEquals("resourceVlanRole", assignVlanTagResponseOutput.getResourceVlanRole());
+ }
+
+ @Test
+ public void testStoredElements()
+ {
+ List<VlanTag> storedElements = new ArrayList<>();
+ assignVlanTagResponseOutput.storedElements(storedElements);
+ assertEquals(storedElements, assignVlanTagResponseOutput.getStoredElements());
+ }
+
+ @Test
+ public void testEqualsAndHashCode()
+ {
+ assertTrue(assignVlanTagResponseOutput.equals(assignVlanTagResponseOutput1));
+ assertTrue((Integer)assignVlanTagResponseOutput.hashCode() instanceof Integer);
+ }
+}