updated existing test case to increase coverage 07/58407/2
authorSandeep J <sandeejh@in.ibm.com>
Wed, 1 Aug 2018 11:04:54 +0000 (16:34 +0530)
committerSandeep J <sandeejh@in.ibm.com>
Wed, 1 Aug 2018 18:19:22 +0000 (18:19 +0000)
updated existing test case to increase code coverage

Issue-ID: APPC-1086
Change-Id: Iea8d0a833872cec864436300c4bcbc9e55cd3316
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/validator/TestEscapeUtils.java

index 8018965..0ebc768 100644 (file)
@@ -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
 
 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);
     }
 }