From e635553f8f4e535c4d1fce889a7d0986d6c0268c Mon Sep 17 00:00:00 2001 From: Sandeep J Date: Tue, 5 Feb 2019 14:38:08 +0530 Subject: [PATCH] added test file to cover TemplateException.java to increase code coverage Issue-ID: APPC-1086 Change-Id: I21877b15110502d75b05fa57eb179fb462e1e755 Signed-off-by: Sandeep J --- .../onap/appc/ccadaptor/TemplateExceptionTest.java | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TemplateExceptionTest.java diff --git a/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TemplateExceptionTest.java b/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TemplateExceptionTest.java new file mode 100644 index 000000000..348ee3b3b --- /dev/null +++ b/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TemplateExceptionTest.java @@ -0,0 +1,34 @@ +/*- +* ============LICENSE_START======================================================= +* ONAP : APPC +* ================================================================================ +* Copyright (C) 2019 IBM. +* ============================================================================= +* 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.ccadaptor; + +import org.junit.Assert; +import org.junit.Test; + +public class TemplateExceptionTest { + @Test + public void testTemplateException() { + String message = "my test message"; + TemplateException templateExp = new TemplateException(message); + Assert.assertEquals(message, templateExp.getLocalizedMessage()); + Assert.assertEquals(message, templateExp.getMessage()); + } +} -- 2.16.6