aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorezhil <ezhrajam@in.ibm.com>2020-04-30 20:26:59 +0530
committerezhil <ezhrajam@in.ibm.com>2020-04-30 20:27:04 +0530
commit51483542b1717d676cc670c9dae959cea52eeb55 (patch)
tree0302f3b53b4b93cf54df0b381edb136e270fd7a7
parentc2f7d24209a7f9b27b2fdd870539529046ae5c24 (diff)
Junit for EsrSystemInfo
Issue-ID: USECASEUI-439 Change-Id: Ic4595c1230fa83f33b1e6aa5bbe25e7e9f4c6a8c Signed-off-by: ezhil <ezhrajam@in.ibm.com>
-rw-r--r--server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/EsrSystemInfoTest.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/EsrSystemInfoTest.java b/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/EsrSystemInfoTest.java
new file mode 100644
index 00000000..b912b785
--- /dev/null
+++ b/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/EsrSystemInfoTest.java
@@ -0,0 +1,67 @@
+/*-
+ * ============LICENSE_START============================================
+ * ONAP
+ * =====================================================================
+ * Copyright (C) 2020 IBM Intellectual Property. All rights reserved.
+ * =====================================================================
+ *
+ * Unless otherwise specified, all software contained herein is licensed
+ * under the Apache License, Version 2.0 (the "License");
+ * you may not use this software 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.
+ *
+ * Unless otherwise specified, all documentation contained herein is licensed
+ * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
+ * you may not use this documentation except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://creativecommons.org/licenses/by/4.0/
+ *
+ * Unless required by applicable law or agreed to in writing, documentation
+ * 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.
+ *
+ * ============LICENSE_END================================================
+ *
+ *
+ */
+package org.onap.usecaseui.server.service.lcm.domain.aai.bean;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class EsrSystemInfoTest {
+
+ @Test
+ public void testGetterMethods(){
+ EsrSystemInfo esr= new EsrSystemInfo();
+ esr.setEsrSystemInfoId("id");
+ esr.setPassword("test123");
+ esr.setResourceVersion("1.0");
+ esr.setServiceUrl("www.example.com");
+ esr.setSystemName("test");
+ esr.setSystemType("test");
+ esr.setVendor("vendor");
+ esr.setUserName("test");
+ esr.setVersion("1.0");
+ Assert.assertEquals(esr.getEsrSystemInfoId(),"id");
+ Assert.assertEquals(esr.getPassword(),"test123");
+ Assert.assertEquals(esr.getResourceVersion(),"1.0");
+ Assert.assertEquals(esr.getServiceUrl(),"www.example.com");
+ Assert.assertEquals(esr.getSystemName(),"test");
+ Assert.assertEquals(esr.getSystemType(),"test");
+ Assert.assertEquals(esr.getVendor(),"vendor");
+ Assert.assertEquals(esr.getUserName(),"test");
+ Assert.assertEquals(esr.getVersion(),"1.0");
+ }
+}