From 4dfa3b7004295da1637e6a7e328ccb84babb76d3 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Mon, 18 Jul 2011 21:05:55 +0200 Subject: There's now 1 test suite that runs all tests, and 'ant eclipse' will make a launch config that adds the appropriate -javaagent VM param to ensure the runWithEclipse tests work. --- test/transform/src/lombok/transform/RunTransformTests.java | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/transform/src/lombok/transform/RunTransformTests.java (limited to 'test/transform') diff --git a/test/transform/src/lombok/transform/RunTransformTests.java b/test/transform/src/lombok/transform/RunTransformTests.java new file mode 100644 index 00000000..0149fae2 --- /dev/null +++ b/test/transform/src/lombok/transform/RunTransformTests.java @@ -0,0 +1,10 @@ +package lombok.transform; + +import org.junit.runner.RunWith; +import org.junit.runners.Suite; +import org.junit.runners.Suite.SuiteClasses; + +@RunWith(Suite.class) +@SuiteClasses({TestLombokFilesIdempotent.class, TestSourceFiles.class, TestWithDelombok.class, TestWithEcj.class, TestWithEclipse.class}) +public class RunTransformTests { +} -- cgit