* ================================================================================
  * 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);
     }
 }