added test file to cover UnassignVlanTagRequest 65/67665/2
authorSandeep J <sandeejh@in.ibm.com>
Wed, 19 Sep 2018 09:56:15 +0000 (15:26 +0530)
committerSandeep Jha <sandeejh@in.ibm.com>
Wed, 19 Sep 2018 09:57:48 +0000 (09:57 +0000)
to increase code coverage

Issue-ID: CCSDK-552
Change-Id: Iabc53ae55f7b705ea899c380f342632fc76dcb2f
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/UnassignVlanTagRequestTest.java [new file with mode: 0644]

diff --git a/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/UnassignVlanTagRequestTest.java b/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/UnassignVlanTagRequestTest.java
new file mode 100644 (file)
index 0000000..65394c8
--- /dev/null
@@ -0,0 +1,63 @@
+/*******************************************************************************
+ * 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 java.util.ArrayList;
+import java.util.List;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.ccsdk.apps.ms.vlantagapi.core.model.UnassignVlanTagRequest;
+import org.onap.ccsdk.apps.ms.vlantagapi.core.model.UnassignVlanTagRequestInput;
+
+public class UnassignVlanTagRequestTest {
+    
+    private UnassignVlanTagRequest unassignVlanTagRequest;
+    private UnassignVlanTagRequest unassignVlanTagRequest1;
+    
+    @Before
+    public void setUp()
+    {
+        unassignVlanTagRequest= new UnassignVlanTagRequest();
+        unassignVlanTagRequest1= new UnassignVlanTagRequest();
+    }
+    
+    @Test
+    public void testInput()
+    {
+        List<UnassignVlanTagRequestInput> input = new ArrayList<>();
+        unassignVlanTagRequest.input(input);
+        assertEquals(input, unassignVlanTagRequest.getInput());
+    }
+    
+    @Test
+    public void testEquals()
+    {
+        assertTrue(unassignVlanTagRequest.equals(unassignVlanTagRequest1));
+    }
+    
+    @Test
+    public void testToStringAndHashcode()
+    {
+        assertTrue(unassignVlanTagRequest.toString() instanceof String);
+        assertTrue((Integer)unassignVlanTagRequest.hashCode() instanceof Integer);
+    }
+
+}