diff options
Diffstat (limited to 'test/Issue344Test2.java')
-rwxr-xr-x | test/Issue344Test2.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Issue344Test2.java b/test/Issue344Test2.java new file mode 100755 index 000000000..b0900438c --- /dev/null +++ b/test/Issue344Test2.java @@ -0,0 +1,10 @@ +public class Issue344Test2 extends Issue344Base { + protected String getText() { + // test 2 - unicode hangs program with a large font & long string + return "\u201Cabcdefghijklmnopqrstuvwxyz\u201D"; + } + + public static void main(String[] args) { + new Issue344Test2().run(args); + } +} |