diff options
author | shubhada <SV00449682@techmahindra.com> | 2018-03-14 12:22:04 +0530 |
---|---|---|
committer | shubhada <SV00449682@techmahindra.com> | 2018-03-14 12:22:04 +0530 |
commit | 733ed3ba65c6d1cac885bf449a71e5d66bfccb4f (patch) | |
tree | 82c2dae6b1420d069b8b934abe50e4a7908b6fb7 /appc-lifecycle-management | |
parent | cd64fe135b4d6a293b07868425855e17793e3512 (diff) |
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 <SV00449682@techmahindra.com>
Diffstat (limited to 'appc-lifecycle-management')
3 files changed, 111 insertions, 0 deletions
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 @@ <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 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())); + } + +} |