aboutsummaryrefslogtreecommitdiffstats
path: root/ms/vlantag-api
diff options
context:
space:
mode:
authorDan Timoney <dt5972@att.com>2018-09-20 18:04:35 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-20 18:04:35 +0000
commitaa9fb13f1a0bb6201cb86e061d6326fba1920d9c (patch)
tree5ab8d960c7f74b18e0a1002d917d69d73c347e0f /ms/vlantag-api
parent8d0bbf2cd065d7492db4fabfe2e802c719eb8ec0 (diff)
parentb9f3f6a0c2b515118bea9ace42c84cfd53d01fdb (diff)
Merge "added test file to cover UnassignVlanTagRequest"
Diffstat (limited to 'ms/vlantag-api')
-rw-r--r--ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/UnassignVlanTagRequestTest.java63
1 files changed, 63 insertions, 0 deletions
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
index 00000000..65394c88
--- /dev/null
+++ b/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/UnassignVlanTagRequestTest.java
@@ -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);
+ }
+
+}