Unit test coverage

Unit test coverage for
1.RequestInformation.java
2.SDNCEvent.java

Sonar link:
https://sonar.onap.org/code?id=org.onap.so%3Aadapters&selected=org.onap.so.adapters%3Amso-adapters-rest-interface%3Asrc%2Fmain%2Fjava%2Forg%2Fopenecomp%2Fmso%2Fadapters%2Fsdncrest

Change-Id: I9ed76cac33bad1739df441c8f9e0ad77d738e1d6
Issue-ID: SO-467
Signed-off-by: sanchitap <sanchita@techmahindra.com>
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/RequestInformationTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/RequestInformationTest.java
new file mode 100644
index 0000000..c6d815a
--- /dev/null
+++ b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/RequestInformationTest.java
@@ -0,0 +1,57 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP - SO
+ * ================================================================================
+ * Copyright (C) 2018 TechMahindra
+ * ================================================================================
+ * 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.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.openecomp.mso.adapters.sdncrest;
+
+import org.junit.Assert;
+
+import org.junit.Before;
+import org.junit.Test;
+
+public class RequestInformationTest {
+
+    private RequestInformation requestInformation;
+
+    @Before
+    public void setUp() {
+        requestInformation = new RequestInformation();
+    }
+
+    @Test
+    public void testGetRequestId() {
+        requestInformation.setRequestId("requestId");
+        Assert.assertNotNull(requestInformation.getRequestId());
+        Assert.assertEquals(requestInformation.getRequestId(), "requestId");
+    }
+
+    @Test
+    public void testGetSource() {
+        requestInformation.setSource("source");
+        Assert.assertNotNull(requestInformation.getSource());
+        Assert.assertEquals(requestInformation.getSource(), "source");
+    }
+
+    @Test
+    public void testGetNotificationUrl() {
+        requestInformation.setNotificationUrl("notificationUrl");
+        Assert.assertNotNull(requestInformation.getNotificationUrl());
+        Assert.assertEquals(requestInformation.getNotificationUrl(), "notificationUrl");
+    }
+}
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/SDNCEventTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/SDNCEventTest.java
new file mode 100644
index 0000000..81d888b
--- /dev/null
+++ b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/adapters/sdncrest/SDNCEventTest.java
@@ -0,0 +1,81 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP - SO
+ * ================================================================================
+ * Copyright (C) 2018 TechMahindra
+ * ================================================================================
+ * 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
+ * ============LICENSE_END=========================================================
+ */
+
+package org.openecomp.mso.adapters.sdncrest;
+
+import static org.junit.Assert.*;
+
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+import java.util.HashMap;
+import java.util.Map;
+
+public class SDNCEventTest {
+
+    private SDNCEvent sdncEvent;
+    private Map<String, String> param;
+    private String name = "name";
+    private String value = "value";
+
+    @Before
+    public void setUp() {
+        sdncEvent = new SDNCEvent();
+    }
+
+    @Test
+    public void testGetEventType() {
+        sdncEvent.setEventType("eventType");
+        Assert.assertNotNull(sdncEvent.getEventType());
+        Assert.assertEquals(sdncEvent.getEventType(), "eventType");
+    }
+
+    @Test
+    public void testGetEventCorrelatorType() {
+        sdncEvent.setEventCorrelatorType("eventCorrelatorType");
+        Assert.assertNotNull(sdncEvent.getEventCorrelatorType());
+        Assert.assertEquals(sdncEvent.getEventCorrelatorType(), "eventCorrelatorType");
+    }
+
+    @Test
+    public void testGetEventCorrelator() {
+        sdncEvent.setEventCorrelator("eventCorrelator");
+        Assert.assertNotNull(sdncEvent.getEventCorrelator());
+        Assert.assertEquals(sdncEvent.getEventCorrelator(), "eventCorrelator");
+    }
+
+    @Test
+    public void testGetParams() {
+        param = new HashMap<>();
+        param.put("paramKey", "paramValue");
+        sdncEvent.setParams(param);
+        Assert.assertNotNull(sdncEvent.getParams());
+        Assert.assertTrue(sdncEvent.getParams().containsKey("paramKey"));
+        Assert.assertTrue(sdncEvent.getParams().containsValue("paramValue"));
+    }
+
+    @Test
+    public void testAddParam() {
+        sdncEvent.addParam("name", "value");
+
+    }
+
+}