Unit Test Coverage 71/35671/1
authorshubhada <SV00449682@techmahindra.com>
Wed, 14 Mar 2018 06:52:04 +0000 (12:22 +0530)
committershubhada <SV00449682@techmahindra.com>
Wed, 14 Mar 2018 06:52:04 +0000 (12:22 +0530)
Unit Test Coverage for:
1)LCMResponse.java
2)VNFOperationOutcome.java

Sonar-Link:
https://sonar.onap.org/code?id=org.onap.appc%3Aappc&selected=org.onap.appc%3Aappc-lifecycle-management-api%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Fappc%2Flifecyclemanager%2Fobjects

Change-Id: I1296cad32cd750297557888ba0fcfd63d61d2b69
Issue-ID: APPC-728
Signed-off-by: shubhada <SV00449682@techmahindra.com>
appc-lifecycle-management/appc-lifecycle-management-api/pom.xml
appc-lifecycle-management/appc-lifecycle-management-api/src/test/java/org/onap/appc/lifecyclemanager/objects/TestLCMResponse.java [new file with mode: 0644]
appc-lifecycle-management/appc-lifecycle-management-api/src/test/java/org/onap/appc/lifecyclemanager/objects/TestVNFOperationOutcome.java [new file with mode: 0644]

index d3d32c2..80ceeba 100644 (file)
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.12</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
     <build>
         <plugins>
             <plugin>
diff --git a/appc-lifecycle-management/appc-lifecycle-management-api/src/test/java/org/onap/appc/lifecyclemanager/objects/TestLCMResponse.java b/appc-lifecycle-management/appc-lifecycle-management-api/src/test/java/org/onap/appc/lifecyclemanager/objects/TestLCMResponse.java
new file mode 100644 (file)
index 0000000..9f1a9c8
--- /dev/null
@@ -0,0 +1,51 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : APPC
+* ================================================================================
+* Copyright 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.onap.appc.lifecyclemanager.objects;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+
+public class TestLCMResponse {
+    private LCMResponse lcmresponse=LCMResponse.INVALID_INPUT_PARAMETERS;
+
+    @Test
+    public void testName() {
+        assertEquals("INVALID_INPUT_PARAMETERS",lcmresponse.name());
+    }
+
+    @Test
+    public void testEquals()  {
+        assertTrue(lcmresponse.equals(LCMResponse.INVALID_INPUT_PARAMETERS));
+        assertFalse(lcmresponse.equals(null));
+    }
+
+    @Test
+    public void testToString_ReturnNonEmptyString() {
+        assertNotEquals(lcmresponse.toString(), "");
+        assertNotEquals(lcmresponse.toString(), null);
+    }
+
+    @Test
+    public void testTostring() {
+        assertTrue(lcmresponse.toString().contains(lcmresponse.name()));
+    }
+
+}
diff --git a/appc-lifecycle-management/appc-lifecycle-management-api/src/test/java/org/onap/appc/lifecyclemanager/objects/TestVNFOperationOutcome.java b/appc-lifecycle-management/appc-lifecycle-management-api/src/test/java/org/onap/appc/lifecyclemanager/objects/TestVNFOperationOutcome.java
new file mode 100644 (file)
index 0000000..e699401
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : APPC
+* ================================================================================
+* Copyright 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.onap.appc.lifecyclemanager.objects;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+
+public class TestVNFOperationOutcome {
+    private VNFOperationOutcome vnfOperationOutcome=VNFOperationOutcome.EXPIRE;
+
+    @Test
+    public void testName() {
+        assertEquals("EXPIRE",vnfOperationOutcome.name());
+    }
+
+    @Test
+    public void testEquals()  {
+        assertTrue(vnfOperationOutcome.equals(VNFOperationOutcome.EXPIRE));
+        assertFalse(vnfOperationOutcome.equals(null));
+    }
+
+    @Test
+    public void testToString_ReturnNonEmptyString() {
+        assertNotEquals(vnfOperationOutcome.toString(), "");
+        assertNotEquals(vnfOperationOutcome.toString(), null);
+        
+    }
+
+    @Test
+    public void testTostring() {
+        assertTrue(vnfOperationOutcome.toString().contains(vnfOperationOutcome.name()));
+    }
+
+}