You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Pedro (JIRA)" <ji...@apache.org> on 2018/02/26 15:57:00 UTC

[jira] [Created] (TEXT-120) StringEscapeUtils UnescapeJson does not unescape

Pedro created TEXT-120:
--------------------------

             Summary: StringEscapeUtils UnescapeJson does not unescape
                 Key: TEXT-120
                 URL: https://issues.apache.org/jira/browse/TEXT-120
             Project: Commons Text
          Issue Type: Bug
    Affects Versions: 1.2
            Reporter: Pedro


Here's a unit test to show how the escape/unescape cycle doesn't return expected String.

 
@Testpublic void testUnscape() {  String unscapeString = "double quote: \" and a forward slash: /";
  String escapeString = StringEscapeUtils.escapeJson(unscapeString);
  assertEquals("double quote: \" and a forward slash: \/", escapeString);
  assertEquals(unscapeString, StringEscapeUtils.unescapeJson(escapeString));
}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)