From 733ed3ba65c6d1cac885bf449a71e5d66bfccb4f Mon Sep 17 00:00:00 2001 From: shubhada Date: Wed, 14 Mar 2018 12:22:04 +0530 Subject: [PATCH] Unit Test Coverage 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 --- .../appc-lifecycle-management-api/pom.xml | 8 ++++ .../lifecyclemanager/objects/TestLCMResponse.java | 51 +++++++++++++++++++++ .../objects/TestVNFOperationOutcome.java | 52 ++++++++++++++++++++++ 3 files changed, 111 insertions(+) create mode 100644 appc-lifecycle-management/appc-lifecycle-management-api/src/test/java/org/onap/appc/lifecyclemanager/objects/TestLCMResponse.java create mode 100644 appc-lifecycle-management/appc-lifecycle-management-api/src/test/java/org/onap/appc/lifecyclemanager/objects/TestVNFOperationOutcome.java diff --git a/appc-lifecycle-management/appc-lifecycle-management-api/pom.xml b/appc-lifecycle-management/appc-lifecycle-management-api/pom.xml index d3d32c210..80ceebaa0 100644 --- a/appc-lifecycle-management/appc-lifecycle-management-api/pom.xml +++ b/appc-lifecycle-management/appc-lifecycle-management-api/pom.xml @@ -37,6 +37,14 @@ UTF-8 + + + junit + junit + 4.12 + test + + 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 index 000000000..9f1a9c8d1 --- /dev/null +++ b/appc-lifecycle-management/appc-lifecycle-management-api/src/test/java/org/onap/appc/lifecyclemanager/objects/TestLCMResponse.java @@ -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 index 000000000..e69940197 --- /dev/null +++ b/appc-lifecycle-management/appc-lifecycle-management-api/src/test/java/org/onap/appc/lifecyclemanager/objects/TestVNFOperationOutcome.java @@ -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())); + } + +} -- 2.16.6