added tes file to cover SliapiHelper 26/69626/1
authorSandeep J <sandeejh@in.ibm.com>
Mon, 1 Oct 2018 20:38:36 +0000 (02:08 +0530)
committerSandeep J <sandeejh@in.ibm.com>
Mon, 1 Oct 2018 20:39:38 +0000 (02:09 +0530)
to incrase code coverage

Issue-ID: CCSDK-595
Change-Id: I5c15bb14e8d101873e70dcd057e2e8fc7bead344
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
sliapi/provider/src/test/java/org/onap/ccsdk/sli/core/sliapi/SliapiHelperTest.java [new file with mode: 0644]

diff --git a/sliapi/provider/src/test/java/org/onap/ccsdk/sli/core/sliapi/SliapiHelperTest.java b/sliapi/provider/src/test/java/org/onap/ccsdk/sli/core/sliapi/SliapiHelperTest.java
new file mode 100644 (file)
index 0000000..228f612
--- /dev/null
@@ -0,0 +1,35 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : CCSDK
+ * ================================================================================
+ * Copyright (C) 2018 IBM. All rights reserved.
+ * ================================================================================
+ * 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.onap.ccsdk.sli.core.sliapi;
+
+import static org.junit.Assert.assertNotNull;
+
+import org.junit.Test;
+
+public class SliapiHelperTest {
+
+    @Test
+    public void TestSliapiHelper()
+    {
+        SliapiHelper sliapiHelper= new SliapiHelper();
+        assertNotNull(sliapiHelper);
+    }
+}