From fb948b4b388bfc70e093196c914a0a5710c6000d Mon Sep 17 00:00:00 2001 From: amshegokar Date: Wed, 14 Mar 2018 11:58:16 +0530 Subject: Coverage for org.onap.appc.licmgr.exception class Coverage for org.onap.appc.licmgr.exception class Sonar Link: https://sonar.onap.org/code?id=org.onap.appc%3Aappc&selected=org.onap.appc%3Aappc-license-manager-api%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Fappc%2Flicmgr%2Fexception Change-Id: Iefe4243fa12b2abb799db807ade2895c3d282a70 Issue-ID: APPC-729 Signed-off-by: amshegokar --- .../licmgr/exception/DataAccessExceptionTest.java | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 appc-dispatcher/appc-license-manager/appc-license-manager-api/src/test/java/org/onap/appc/licmgr/exception/DataAccessExceptionTest.java (limited to 'appc-dispatcher/appc-license-manager/appc-license-manager-api/src') diff --git a/appc-dispatcher/appc-license-manager/appc-license-manager-api/src/test/java/org/onap/appc/licmgr/exception/DataAccessExceptionTest.java b/appc-dispatcher/appc-license-manager/appc-license-manager-api/src/test/java/org/onap/appc/licmgr/exception/DataAccessExceptionTest.java new file mode 100644 index 000000000..4715ca0a4 --- /dev/null +++ b/appc-dispatcher/appc-license-manager/appc-license-manager-api/src/test/java/org/onap/appc/licmgr/exception/DataAccessExceptionTest.java @@ -0,0 +1,65 @@ +/* +* ============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.licmgr.exception; + +import org.junit.Assert; +import org.junit.Test; + +public class DataAccessExceptionTest { + + @Test + public void testConstructorNoArgument() throws Exception { + DataAccessException dataAccessException = new DataAccessException(); + Assert.assertTrue(dataAccessException.getCause() == null); + Assert.assertTrue(dataAccessException.getLocalizedMessage() == null); + Assert.assertTrue(dataAccessException.getMessage() == null); + } + + @Test + public void testConstructorWithMessaqge() throws Exception { + String message = "testing message"; + DataAccessException dataAccessException = new DataAccessException(message); + Assert.assertTrue(dataAccessException.getCause() == null); + Assert.assertEquals(message, dataAccessException.getLocalizedMessage()); + Assert.assertEquals(message, dataAccessException.getMessage()); + } + + @Test + public void testConstructorWithThrowable() throws Exception { + String message = "testing message"; + Throwable throwable = new Throwable(message); + DataAccessException unknownProviderException = new DataAccessException(throwable); + Assert.assertEquals(throwable, unknownProviderException.getCause()); + Assert.assertTrue(unknownProviderException.getLocalizedMessage().contains(message)); + Assert.assertTrue(unknownProviderException.getMessage().contains(message)); + } + + @Test + public void testConstructorWithMessageAndThrowable() throws Exception { + String message = "testing message"; + String tMessage = "throwable message"; + Throwable throwable = new Throwable(tMessage); + DataAccessException dataAccessException = new DataAccessException(message, throwable); + Assert.assertEquals(throwable, dataAccessException.getCause()); + Assert.assertTrue(dataAccessException.getLocalizedMessage().contains(message)); + Assert.assertTrue(dataAccessException.getMessage().contains(message)); + } + +} \ No newline at end of file -- cgit 1.2.3-korg