From be20f7a1180e4aa3d699d89c756c0c07e2eba1a7 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Sun, 29 Nov 2009 01:07:53 +0100 Subject: Added tests for Setter, Cleanup and NonNull --- .../lombok/resource/after/GetterAlreadyExists.java | 66 ++++++++++++++++++++++ 1 file changed, 66 insertions(+) (limited to 'test/lombok/resource/after/GetterAlreadyExists.java') diff --git a/test/lombok/resource/after/GetterAlreadyExists.java b/test/lombok/resource/after/GetterAlreadyExists.java index 152cb372..fce1ba41 100644 --- a/test/lombok/resource/after/GetterAlreadyExists.java +++ b/test/lombok/resource/after/GetterAlreadyExists.java @@ -63,4 +63,70 @@ class Getter9 { boolean getFoo() { return false; } +} +class Getter10 { + boolean foo; + static boolean hasFoo() { + return false; + } +} +class Getter11 { + boolean foo; + static boolean isFoo() { + return false; + } +} +class Getter12 { + boolean foo; + static boolean getFoo() { + return false; + } +} +class Getter13 { + String foo; + static boolean hasFoo() { + return false; + } + public String getFoo() { + return foo; + } +} +class Getter14 { + String foo; + static boolean isFoo() { + return false; + } + public String getFoo() { + return foo; + } +} +class Getter15 { + String foo; + static boolean getFoo() { + return false; + } +} +class Getter16 { + String foo; + static String hasFoo() { + return false; + } + public String getFoo() { + return foo; + } +} +class Getter17 { + String foo; + static String isFoo() { + return false; + } + public String getFoo() { + return foo; + } +} +class Getter18 { + String foo; + static String getFoo() { + return false; + } } \ No newline at end of file -- cgit