From: Sandeep J Date: Wed, 1 Aug 2018 11:04:54 +0000 (+0530) Subject: updated existing test case to increase coverage X-Git-Tag: 1.4.0~137 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F07%2F58407%2F2;p=appc.git updated existing test case to increase coverage updated existing test case to increase code coverage Issue-ID: APPC-1086 Change-Id: Iea8d0a833872cec864436300c4bcbc9e55cd3316 Signed-off-by: Sandeep J --- diff --git a/appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/validator/TestEscapeUtils.java b/appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/validator/TestEscapeUtils.java index 8018965b5..0ebc768e6 100644 --- a/appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/validator/TestEscapeUtils.java +++ b/appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/validator/TestEscapeUtils.java @@ -6,6 +6,8 @@ * ================================================================================ * Copyright (C) 2017 Amdocs * ============================================================================= + * Modification Copyright (C) 2018 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 @@ -23,20 +25,20 @@ package org.onap.appc.design.validator; -import java.io.IOException; import org.junit.Test; import org.onap.appc.design.services.util.EscapeUtils; -import org.onap.appc.design.xinterface.XInterfaceService; -import org.onap.appc.design.xinterface.XResponseProcessor; + import junit.framework.Assert; public class TestEscapeUtils { - + @Test public void testEscapeUtils() { - EscapeUtils escapeUtils = new EscapeUtils(); - String str = escapeUtils.escapeSql("\\'Test Data\\'"); - assert (true); + String expected="\\\\''Test Data\\\\''"; + String str = EscapeUtils.escapeSql("\\'Test Data\\'"); + String str1=EscapeUtils.escapeSql(null); + Assert.assertEquals(expected, str); + Assert.assertNull(str1); } }