aboutsummaryrefslogtreecommitdiff
path: root/test/core/src
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2011-07-18 21:05:55 +0200
committerRoel Spilker <r.spilker@gmail.com>2011-07-18 21:11:37 +0200
commit4dfa3b7004295da1637e6a7e328ccb84babb76d3 (patch)
treeeae66bee9a2506e217369799251a406cbcae27af /test/core/src
parent83e2fb5e00e1868f0b4f0fe38b1ea1383119f8ee (diff)
downloadlombok-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/core/src')
-rw-r--r--test/core/src/lombok/RunAllTests.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/core/src/lombok/RunAllTests.java b/test/core/src/lombok/RunAllTests.java
new file mode 100644
index 00000000..961eab65
--- /dev/null
+++ b/test/core/src/lombok/RunAllTests.java
@@ -0,0 +1,10 @@
+package lombok;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+@RunWith(Suite.class)
+@SuiteClasses({lombok.transform.RunTransformTests.class, lombok.bytecode.RunBytecodeTests.class})
+public class RunAllTests {
+}