aboutsummaryrefslogtreecommitdiffstats
path: root/ms/vlantag-api
diff options
context:
space:
mode:
authorSandeep J <sandeejh@in.ibm.com>2018-09-19 15:38:54 +0530
committerSandeep J <sandeejh@in.ibm.com>2018-09-19 15:39:07 +0530
commitf31fe64230a708d2dd5d819184c00a457ec77e5e (patch)
tree1451a85549ffc554324ea6603a605c9ab87f159a /ms/vlantag-api
parent758bc233c125d2ffec0bf16618747af747aafa45 (diff)
added tst file to cver UnassignVlanTagRequestInput
to increase code coverage Issue-ID: CCSDK-552 Change-Id: I7120ea999808d09588b29a147482490cf45979c7 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/UnassignVlanTagRequestInputTest.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/UnassignVlanTagRequestInputTest.java b/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/UnassignVlanTagRequestInputTest.java
new file mode 100644
index 00000000..6081d0b4
--- /dev/null
+++ b/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/UnassignVlanTagRequestInputTest.java
@@ -0,0 +1,67 @@
+/*******************************************************************************
+ * Copyright © 2018 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.
+ ******************************************************************************/
+
+package org.onap.ccsdk.apps.ms.vlangtagapi.core.model;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.ccsdk.apps.ms.vlantagapi.core.model.UnassignVlanTagRequestInput;
+
+public class UnassignVlanTagRequestInputTest {
+
+ private UnassignVlanTagRequestInput unassignVlanTagRequestInput;
+ private UnassignVlanTagRequestInput unassignVlanTagRequestInput1;
+
+ @Before
+ public void setUp()
+ {
+ unassignVlanTagRequestInput= new UnassignVlanTagRequestInput();
+ unassignVlanTagRequestInput1= new UnassignVlanTagRequestInput();
+ }
+
+ @Test
+ public void testPolicyInstanceName()
+ {
+ unassignVlanTagRequestInput.policyInstanceName("policyInstanceName");
+ assertEquals("policyInstanceName", unassignVlanTagRequestInput.getPolicyInstanceName());
+ }
+
+ @Test
+ public void testVlanType()
+ {
+ unassignVlanTagRequestInput.vlanType("vlanType");
+ assertEquals("vlanType", unassignVlanTagRequestInput.getVlanType());
+ }
+
+ @Test
+ public void testEquals()
+ {
+ assertTrue(unassignVlanTagRequestInput.equals(unassignVlanTagRequestInput1));
+
+ }
+
+ @Test
+ public void testToStringAndHashCode()
+ {
+ assertTrue(unassignVlanTagRequestInput.toString() instanceof String);
+ assertTrue((Integer)unassignVlanTagRequestInput.hashCode() instanceof Integer);
+
+ }
+
+}