blob: c0608ed6e65e2cfe0a6fad59e058c16f4ff1ca7e (
plain)
1
2
3
4
5
6
7
8
9
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);
}
}
|