aboutsummaryrefslogtreecommitdiff
path: root/test/bytecode/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/bytecode/src')
-rw-r--r--test/bytecode/src/lombok/bytecode/RunBytecodeTests.java10
1 files changed, 10 insertions, 0 deletions
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 {
+}