diff options
author | Dan Timoney <dt5972@att.com> | 2018-09-20 18:04:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-20 18:04:49 +0000 |
commit | 5beb6bcc58579b3b23a604dd04996f921c883758 (patch) | |
tree | ae694660f1d903c55f43603d5d8b15e94d036d88 | |
parent | aa9fb13f1a0bb6201cb86e061d6326fba1920d9c (diff) | |
parent | f31fe64230a708d2dd5d819184c00a457ec77e5e (diff) |
Merge "added tst file to cver UnassignVlanTagRequestInput"
-rw-r--r-- | ms/vlantag-api/src/test/java/org/onap/ccsdk/apps/ms/vlangtagapi/core/model/UnassignVlanTagRequestInputTest.java | 67 |
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); + + } + +} |