diff options
author | unknown <roels@.tis.local> | 2009-11-30 18:48:42 +0100 |
---|---|---|
committer | unknown <roels@.tis.local> | 2009-11-30 18:48:42 +0100 |
commit | 2a56f341d0073099859db815caf9d455f74e6198 (patch) | |
tree | 24d563ebe3f2ec91e66f0e0703c67182b90b1026 /test | |
parent | 34f38dad212b5b89a1e548abc5f78d3f0469e2d6 (diff) | |
download | lombok-2a56f341d0073099859db815caf9d455f74e6198.tar.gz lombok-2a56f341d0073099859db815caf9d455f74e6198.tar.bz2 lombok-2a56f341d0073099859db815caf9d455f74e6198.zip |
Finally got the printing of comments right. Also added a test to see if the delomboking a file is an idempotent operation
Diffstat (limited to 'test')
3 files changed, 48 insertions, 4 deletions
diff --git a/test/delombok/src/lombok/delombok/TestLombokFilesIdempotent.java b/test/delombok/src/lombok/delombok/TestLombokFilesIdempotent.java new file mode 100644 index 00000000..556e907c --- /dev/null +++ b/test/delombok/src/lombok/delombok/TestLombokFilesIdempotent.java @@ -0,0 +1,42 @@ +/* + * Copyright © 2009 Reinier Zwitserloot and Roel Spilker. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +package lombok.delombok; + +import java.io.File; + +import lombok.DirectoryRunner; +import lombok.RunTestsViaDelombok; + +import org.junit.runner.RunWith; + +@RunWith(DirectoryRunner.class) +public class TestLombokFilesIdempotent { + + public static File getBeforeDirectory() { + RunTestsViaDelombok.printErrors(true); + return getAfterDirectory(); + } + + public static File getAfterDirectory() { + return new File("test/lombok/resource/after"); + } +} diff --git a/test/lombok/resource/after/CommentsInterspersed.java b/test/lombok/resource/after/CommentsInterspersed.java index 275f198f..ddc716c9 100644 --- a/test/lombok/resource/after/CommentsInterspersed.java +++ b/test/lombok/resource/after/CommentsInterspersed.java @@ -1,16 +1,15 @@ -/* cmt *//* cmt2 */ /* cmt3 */ /*bla */ +/* cmt *//* cmt2 */ /* cmt3 */ /*bla */ public class CommentsInterspersed { /** javadoc for field */ private int x; - /* bla2 */ private String test = "foo"; //$NON-NLS-1$ - /** Javadoc on method */ public native void gwtTest(); /*-{ javascript; }-*/ - public String getTest() { return test; } } //haha! +//hahaha! +//hahahaha! diff --git a/test/lombok/resource/before/CommentsInterspersed.java b/test/lombok/resource/before/CommentsInterspersed.java index 455c680d..e7898aaa 100644 --- a/test/lombok/resource/before/CommentsInterspersed.java +++ b/test/lombok/resource/before/CommentsInterspersed.java @@ -11,4 +11,7 @@ public /*bla */ class CommentsInterspersed { javascript; }-*/ } //haha! +//hahaha! + +//hahahaha! |