Added more tests, one of which tests usage of .getX() in toString, equals, and hashCode, which isn't fully working yet, so this test still fails.

This commit is contained in:
Reinier Zwitserloot
2010-07-22 01:59:30 +02:00
parent 483e23d385
commit 7c47aa1125
9 changed files with 268 additions and 0 deletions
@@ -0,0 +1,5 @@
@lombok.Data @lombok.Getter
class DataWithGetter {
private int x, y;
private final String z;
}