aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxu ran <xuranyjy@chinamobile.com>2020-05-06 03:23:39 +0000
committerGerrit Code Review <gerrit@onap.org>2020-05-06 03:23:39 +0000
commitc3c0027a834fc095196b11989e288c354a4420c6 (patch)
treea9e935051e725c27cca887a51fd5560604c2824a
parente352add44b8c1f414edbc246bd62cf542037f79d (diff)
parent5a13c7cfe57877ae0c1d305c04004af9f803a441 (diff)
Merge "Junit testcase for PInterface"
-rw-r--r--server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/PInterfaceTest.java52
1 files changed, 24 insertions, 28 deletions
diff --git a/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/PInterfaceTest.java b/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/PInterfaceTest.java
index 78d0eca9..c49c28bf 100644
--- a/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/PInterfaceTest.java
+++ b/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/PInterfaceTest.java
@@ -1,11 +1,8 @@
-package org.onap.usecaseui.server.service.lcm.domain.aai.bean;
-
-import org.junit.After;
-import org.junit.Before;
-
/**
* Copyright (C) 2020 Huawei, Inc. and others. All rights reserved.
- *
+ *===================================================================
+ * Modifications Copyright (C) 2020 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
@@ -19,33 +16,20 @@ import org.junit.Before;
* limitations under the License.
*/
-public class PInterfaceTest {
-
- @Before
- public void before() throws Exception {
- }
+package org.onap.usecaseui.server.service.lcm.domain.aai.bean;
- @After
- public void after() throws Exception {
- }
+import org.junit.After;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+public class PInterfaceTest {
- public void pinterface() throws Exception
+ @Test
+ public void testGetMethods() throws Exception
{
PInterface pInterface = new PInterface();
RelationshipList relationshipList = new RelationshipList();
- pInterface.getInMaint();
- pInterface.getInterfaceName();
- pInterface.getInterfaceType();
- pInterface.getNetworkInterfaceType();
- pInterface.getOperationalStatus();
- pInterface.getNetworkRef();
- pInterface.getPortDescription();
- pInterface.getRelationshipList();
- pInterface.getResourceVersion();
- pInterface.getSpeedUnits();
- pInterface.getSpeedValue();
-
pInterface.setInMaint("123");
pInterface.setInterfaceName("123");
pInterface.setInterfaceType("123");
@@ -56,7 +40,19 @@ public class PInterfaceTest {
pInterface.setPortDescription("123");
pInterface.setSpeedValue("123");
pInterface.setSpeedUnits("123");
-
+ pInterface.setResourceVersion("1.0.0");
+
+ Assert.assertEquals(pInterface.getInMaint(),"123");
+ Assert.assertEquals(pInterface.getInterfaceName(),"123");
+ Assert.assertEquals(pInterface.getInterfaceType(),"123");
+ Assert.assertEquals(pInterface.getNetworkInterfaceType(),"123");
+ Assert.assertEquals(pInterface.getOperationalStatus(),"123");
+ Assert.assertEquals(pInterface.getNetworkRef(),"123");
+ Assert.assertEquals(pInterface.getPortDescription(),"123");
+ Assert.assertNotNull(pInterface.getRelationshipList());
+ Assert.assertEquals(pInterface.getResourceVersion(),"1.0.0");
+ Assert.assertEquals(pInterface.getSpeedUnits(),"123");
+ Assert.assertEquals(pInterface.getSpeedValue(),"123");
}