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,11 @@
import lombok.Getter;
import lombok.AccessLevel;
class MultiFieldGetter {
@Getter(AccessLevel.PROTECTED) int x, y;
}
@Getter
class MultiFieldGetter2 {
@Getter(AccessLevel.PACKAGE) int x, y;
}