Junit for EsrSystemInfo 25/106925/1
authorezhil <ezhrajam@in.ibm.com>
Thu, 30 Apr 2020 14:56:59 +0000 (20:26 +0530)
committerezhil <ezhrajam@in.ibm.com>
Thu, 30 Apr 2020 14:57:04 +0000 (20:27 +0530)
Issue-ID: USECASEUI-439
Change-Id: Ic4595c1230fa83f33b1e6aa5bbe25e7e9f4c6a8c
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/EsrSystemInfoTest.java [new file with mode: 0644]

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 (file)
index 0000000..b912b78
--- /dev/null
@@ -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");
+    }
+}