diff options
author | Roel Spilker <r.spilker@gmail.com> | 2011-07-18 21:05:55 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2011-07-18 21:11:37 +0200 |
commit | 4dfa3b7004295da1637e6a7e328ccb84babb76d3 (patch) | |
tree | eae66bee9a2506e217369799251a406cbcae27af /test/transform/src | |
parent | 83e2fb5e00e1868f0b4f0fe38b1ea1383119f8ee (diff) | |
download | lombok-4dfa3b7004295da1637e6a7e328ccb84babb76d3.tar.gz lombok-4dfa3b7004295da1637e6a7e328ccb84babb76d3.tar.bz2 lombok-4dfa3b7004295da1637e6a7e328ccb84babb76d3.zip |
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.
Diffstat (limited to 'test/transform/src')
-rw-r--r-- | test/transform/src/lombok/transform/RunTransformTests.java | 10 |
1 files changed, 10 insertions, 0 deletions
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 { +} |