aboutsummaryrefslogtreecommitdiff
path: root/test/transform/src/lombok
diff options
context:
space:
mode:
authorpeichhorn <peichhor@web.de>2011-06-01 02:44:53 +0200
committerpeichhorn <peichhor@web.de>2011-06-01 02:44:53 +0200
commit850c3eaf07cd4beb2276b5e10296132b6ed3d7a6 (patch)
tree0c655e95d0979a2e2a500eafc4bb8011f892f9ab /test/transform/src/lombok
parentaa96fcbc7724ccd0306b6df0b1aaa9f86aa1d507 (diff)
downloadlombok-850c3eaf07cd4beb2276b5e10296132b6ed3d7a6.tar.gz
lombok-850c3eaf07cd4beb2276b5e10296132b6ed3d7a6.tar.bz2
lombok-850c3eaf07cd4beb2276b5e10296132b6ed3d7a6.zip
Added a test infrastructure that simulates eclipse with diet-parse, type-binding and so forth. Similar to eclipse, the test needs to be executed with lombok as vm-agent. @Delegate runs with this setup, sadly val does not, at least for now.
And as expected the tests shows that @Synchronized and @SneakyThrows are currently broken for eclipse but not for ecj.
Diffstat (limited to 'test/transform/src/lombok')
-rw-r--r--test/transform/src/lombok/transform/TestWithEclipse.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/test/transform/src/lombok/transform/TestWithEclipse.java b/test/transform/src/lombok/transform/TestWithEclipse.java
new file mode 100644
index 00000000..dff73425
--- /dev/null
+++ b/test/transform/src/lombok/transform/TestWithEclipse.java
@@ -0,0 +1,59 @@
+/*
+ * Copyright © 2011 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.transform;
+
+import java.io.File;
+
+import lombok.DirectoryRunner;
+
+import org.junit.runner.RunWith;
+
+// For now you need to add the following vm-parameter to run the test:
+// -javaagent:${project_loc:lombok}/dist/lombok.jar
+
+@RunWith(DirectoryRunner.class)
+public class TestWithEclipse implements DirectoryRunner.TestParams {
+ @Override
+ public DirectoryRunner.Compiler getCompiler() {
+ return DirectoryRunner.Compiler.ECLIPSE;
+ }
+
+ @Override
+ public boolean printErrors() {
+ return true;
+ }
+
+ @Override
+ public File getBeforeDirectory() {
+ return new File("test/transform/resource/before");
+ }
+
+ @Override
+ public File getAfterDirectory() {
+ return new File("test/transform/resource/after-eclipse");
+ }
+
+ @Override
+ public File getMessagesDirectory() {
+ return new File("test/transform/resource/messages-eclipse");
+ }
+}