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