Skip to content

Commit

Permalink
add testcase for 1075#
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Mar 16, 2017
1 parent 3d7d24a commit 80fd576
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/test/java/com/alibaba/json/bvt/bug/Issue1075.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.alibaba.json.bvt.bug;

import com.alibaba.fastjson.JSON;
import junit.framework.TestCase;

/**
* Created by wenshao on 16/03/2017.
*/
public class Issue1075 extends TestCase {
public void test_for_issue() throws Exception {
String json = "{ \"question\": \"1+1=?\\u1505a\"}";
JSON.parseObject(json);
}
}

0 comments on commit 80fd576

Please sign in to comment.