diff options
author | Roel Spilker <r.spilker@gmail.com> | 2010-08-15 22:35:29 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-08-15 22:35:29 +0200 |
commit | e4845802a7d66415e330325dd434c0df4315c895 (patch) | |
tree | 029b394cc23f8544640a2f15095c8d9252eda397 | |
parent | b0ec7d5389e7b2e7b1ddf7c743f0ff093d55c1f1 (diff) | |
download | lombok-e4845802a7d66415e330325dd434c0df4315c895.tar.gz lombok-e4845802a7d66415e330325dd434c0df4315c895.tar.bz2 lombok-e4845802a7d66415e330325dd434c0df4315c895.zip |
Updated buildscript to include tests and eclipse .project generation for the new bytecode tests in test/bytecode/src
-rw-r--r-- | build.xml | 5 | ||||
-rw-r--r-- | test/bytecode/src/lombok/bytecode/TestClassFileMetaData.java (renamed from test/bytecode/src/lombok/bytecode/ClassFileMetaDataTest.java) | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -171,6 +171,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <srcdir dir="experimental/src" /> <srcdir dir="test/transform/src" /> <srcdir dir="test/core/src" /> + <srcdir dir="test/bytecode/src" /> <conf name="build" sources="contrib" /> <conf name="test" sources="contrib" /> <settings> @@ -208,6 +209,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <classpath path="build/lombok" /> <src path="test/core/src" /> <src path="test/transform/src" /> + <src path="test/bytecode/src" /> </ivy:compile> <copy todir="build/tests"> <fileset dir="test/pretty/resource" /> @@ -228,6 +230,9 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <fileset dir="test/transform/src"> <include name="**/Test*.java" /> </fileset> + <fileset dir="test/bytecode/src"> + <include name="**/Test*.java" /> + </fileset> </batchtest> </junit> <echo level="info">All tests successful.</echo> diff --git a/test/bytecode/src/lombok/bytecode/ClassFileMetaDataTest.java b/test/bytecode/src/lombok/bytecode/TestClassFileMetaData.java index 191ec70d..ad5a3cee 100644 --- a/test/bytecode/src/lombok/bytecode/ClassFileMetaDataTest.java +++ b/test/bytecode/src/lombok/bytecode/TestClassFileMetaData.java @@ -41,7 +41,7 @@ import lombok.Lombok; import org.junit.Test; -public class ClassFileMetaDataTest { +public class TestClassFileMetaData { private static ClassFileMetaData foo = create(new File("test/bytecode/resource/Foo.java")); private static ClassFileMetaData bar = create(new File("test/bytecode/resource/Bar.java")); |