aboutsummaryrefslogtreecommitdiffstats
path: root/appc-inbound/appc-design-services
diff options
context:
space:
mode:
Diffstat (limited to 'appc-inbound/appc-design-services')
-rw-r--r--appc-inbound/appc-design-services/provider/src/test/java/org/onap/appc/design/validator/TestEscapeUtils.java16
1 files changed, 9 insertions, 7 deletions
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);
}
}