aboutsummaryrefslogtreecommitdiffstats
path: root/ms/vlantag-api
diff options
context:
space:
mode:
authorSandeep J <sandeejh@in.ibm.com>2018-09-19 02:14:11 +0530
committerSandeep J <sandeejh@in.ibm.com>2018-09-19 02:14:20 +0530
commit9ec4f09370e5be039ab6a9ac450cb4d4c72ff2ce (patch)
treebdf4c7310891a4d9a70879c618922abae0bb79f7 /ms/vlantag-api
parent758bc233c125d2ffec0bf16618747af747aafa45 (diff)
added test file for covering AssignVlanTagRequest
to increase code coverage Issue-ID: CCSDK-552 Change-Id: Ib94674fe0072cc1cf923fd5e72a16f32a9dfffc3 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/AssignVlanTagRequestTest.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/AssignVlanTagRequestTest.java b/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/AssignVlanTagRequestTest.java
new file mode 100644
index 00000000..5d18560f
--- /dev/null
+++ b/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/AssignVlanTagRequestTest.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 java.util.ArrayList;
+import java.util.List;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.ccsdk.apps.ms.vlantagapi.core.model.AssignVlanTagRequest;
+import org.onap.ccsdk.apps.ms.vlantagapi.core.model.AssignVlanTagRequestInput;
+
+public class AssignVlanTagRequestTest {
+
+ private AssignVlanTagRequest assignVlanTagRequest;
+ private AssignVlanTagRequest assignVlanTagRequest1;
+ private List<AssignVlanTagRequestInput> input;
+
+ @Before
+ public void setUp()
+ {
+ assignVlanTagRequest = new AssignVlanTagRequest();
+ assignVlanTagRequest1 = new AssignVlanTagRequest();
+ input= new ArrayList<>();
+ }
+
+ @Test
+ public void testGetSetOutput()
+ {
+ assignVlanTagRequest.setInput(input);
+ assignVlanTagRequest.input(assignVlanTagRequest.getInput());
+ assertEquals(input, assignVlanTagRequest.getInput());
+ }
+
+ @Test
+ public void testEquals()
+ {
+ assignVlanTagRequest.setInput(input);
+ assignVlanTagRequest1.setInput(input);
+ assertEquals(true, assignVlanTagRequest.equals(assignVlanTagRequest1));
+ }
+
+ @Test
+ public void testToStringAndHashCode()
+ {
+ assertTrue(assignVlanTagRequest.toString() instanceof String);
+ assertTrue((Integer)assignVlanTagRequest.hashCode() instanceof Integer);
+ }
+
+}