aboutsummaryrefslogtreecommitdiffstats
path: root/ms/vlantag-api
diff options
context:
space:
mode:
authorDan Timoney <dt5972@att.com>2018-09-20 18:04:09 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-20 18:04:09 +0000
commitf56ea6795dff36b006469de43b244fd1df194381 (patch)
tree06eb33a99e47bbc3012f3705f74c6776ed51621e /ms/vlantag-api
parent597211f72171c566587e597b34af0dd9230b5354 (diff)
parent0e04d1a0c132b2f3fe66e998da6d121ce189fb6c (diff)
Merge "added test file to cover AssignVlanTagResponse"
Diffstat (limited to 'ms/vlantag-api')
-rw-r--r--ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/AssignVlanTagResponseTest.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/AssignVlanTagResponseTest.java b/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/AssignVlanTagResponseTest.java
new file mode 100644
index 00000000..bbcebbad
--- /dev/null
+++ b/ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/AssignVlanTagResponseTest.java
@@ -0,0 +1,66 @@
+/*******************************************************************************
+ * 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.AssignVlanTagResponse;
+import org.onap.ccsdk.apps.ms.vlantagapi.core.model.AssignVlanTagResponseOutput;;
+
+public class AssignVlanTagResponseTest {
+ private AssignVlanTagResponse assignVlanTagResponse;
+
+ private AssignVlanTagResponse assignVlanTagResponse1;
+
+ @Before
+ public void setUp()
+ {
+ assignVlanTagResponse= new AssignVlanTagResponse();
+ assignVlanTagResponse1= new AssignVlanTagResponse();
+ }
+
+ @Test
+ public void testOutput()
+ {
+ List<AssignVlanTagResponseOutput> output=new ArrayList<AssignVlanTagResponseOutput>();
+ assignVlanTagResponse.output(output);
+ assertEquals(output, assignVlanTagResponse.getOutput());
+ }
+
+ @Test
+ public void testErrorCode()
+ {
+ assignVlanTagResponse.errorCode(200);
+ Integer expected=200;
+ assertEquals(expected, assignVlanTagResponse.getErrorCode());
+ }
+
+ @Test
+ public void testEqualsAndHashcode()
+ {
+ assertTrue(assignVlanTagResponse.equals(assignVlanTagResponse1));
+ assertTrue((Integer)assignVlanTagResponse.hashCode() instanceof Integer);
+ }
+
+
+}