diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-14 16:39:48 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-14 16:39:48 +0100 |
commit | 06581537f24fe31ee096960be496bc503059a95e (patch) | |
tree | 3732f6fe2117c390f9812b5961dd2d95d4293026 /test/transform/resource/before/ValComplex.java | |
parent | 5e9e16a6b98da5a17f5efe785917bc1e92265fc8 (diff) | |
download | lombok-06581537f24fe31ee096960be496bc503059a95e.tar.gz lombok-06581537f24fe31ee096960be496bc503059a95e.tar.bz2 lombok-06581537f24fe31ee096960be496bc503059a95e.zip |
More test files, test files updated to be valid java, and ecj test now goes through the complete compile process. This means val and @Delegate testing is now enabled.
TODO: Update -eclipse tests.
Diffstat (limited to 'test/transform/resource/before/ValComplex.java')
-rw-r--r-- | test/transform/resource/before/ValComplex.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/transform/resource/before/ValComplex.java b/test/transform/resource/before/ValComplex.java index c2e53011..e20124a2 100644 --- a/test/transform/resource/before/ValComplex.java +++ b/test/transform/resource/before/ValComplex.java @@ -1,11 +1,11 @@ import lombok.val; public class ValComplex { - private ValSimple field = new ValSimple(); + private String field = ""; private static final int CONSTANT = 20; - public void testReferencingOtherFiles() { - val shouldBeString = field.method(); + public void testComplex() { + val shouldBeCharArray = field.toCharArray(); val shouldBeInt = CONSTANT; val lock = new Object(); synchronized (lock) { @@ -13,10 +13,10 @@ public class ValComplex { val inner = 10; switch (field) { case 5: - val shouldBeString2 = shouldBeString; + val shouldBeCharArray2 = shouldBeCharArray; val innerInner = inner; } } - val shouldBeValSimple = field; //Unshadowing + val shouldBeString = field; //Unshadowing } }
\ No newline at end of file |