diff options
author | Sandeep J <sandeejh@in.ibm.com> | 2019-02-05 14:38:08 +0530 |
---|---|---|
committer | Joss Armstrong <joss.armstrong@ericsson.com> | 2019-02-05 14:57:38 +0000 |
commit | e635553f8f4e535c4d1fce889a7d0986d6c0268c (patch) | |
tree | 4faa139b36b592cc4bb28232a7e519fcdb997cf3 /appc-config/appc-config-adaptor/provider/src/test | |
parent | 5b51c60562b6a42500d502bb13d3ebbc17920b0a (diff) |
added test file to cover TemplateException.java
to increase code coverage
Issue-ID: APPC-1086
Change-Id: I21877b15110502d75b05fa57eb179fb462e1e755
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
Diffstat (limited to 'appc-config/appc-config-adaptor/provider/src/test')
-rw-r--r-- | appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TemplateExceptionTest.java | 34 |
1 files changed, 34 insertions, 0 deletions
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()); + } +} |