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/bytecode/src/lombok/bytecode/RunBytecodeTests.java | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/bytecode/src/lombok/bytecode/RunBytecodeTests.java (limited to 'test/bytecode/src') diff --git a/test/bytecode/src/lombok/bytecode/RunBytecodeTests.java b/test/bytecode/src/lombok/bytecode/RunBytecodeTests.java new file mode 100644 index 00000000..83602bbb --- /dev/null +++ b/test/bytecode/src/lombok/bytecode/RunBytecodeTests.java @@ -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 { +} -- cgit