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.

This commit is contained in:
Roel Spilker
2011-07-18 21:11:37 +02:00
parent 83e2fb5e00
commit 4dfa3b7004
6 changed files with 63 additions and 0 deletions
@@ -0,0 +1,10 @@
package lombok.bytecode;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({TestClassFileMetaData.class})
public class RunBytecodeTests {
}