added test file to cover TemplateException.java 58/77858/2
authorSandeep J <sandeejh@in.ibm.com>
Tue, 5 Feb 2019 09:08:08 +0000 (14:38 +0530)
committerJoss Armstrong <joss.armstrong@ericsson.com>
Tue, 5 Feb 2019 14:57:38 +0000 (14:57 +0000)
to increase code coverage

Issue-ID: APPC-1086
Change-Id: I21877b15110502d75b05fa57eb179fb462e1e755
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TemplateExceptionTest.java [new file with mode: 0644]

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 (file)
index 0000000..348ee3b
--- /dev/null
@@ -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());
+    }
+}