aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2014-01-31 00:32:25 +0100
committerRoel Spilker <r.spilker@gmail.com>2014-01-31 00:32:25 +0100
commit293422803392543c6eb170db87d08f7cb54aafe6 (patch)
treef8394742698b1944e293f3ca9cb494ecea6e741a /build.xml
parent0293e13fedd45d0dee03773c4d1ffa17c957ddc5 (diff)
downloadlombok-293422803392543c6eb170db87d08f7cb54aafe6.tar.gz
lombok-293422803392543c6eb170db87d08f7cb54aafe6.tar.bz2
lombok-293422803392543c6eb170db87d08f7cb54aafe6.zip
[configuration] Added first automated test for the configuration framework. For now, it fails.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index b44d6673..c423366a 100644
--- a/build.xml
+++ b/build.xml
@@ -247,6 +247,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr
<srcdir dir="test/transform/src" test="true" />
<srcdir dir="test/core/src" test="true" />
<srcdir dir="test/bytecode/src" test="true" />
+ <srcdir dir="test/configuration/src" test="true" />
</module>
<settings>
<url url="http://projectlombok.org/downloads/lombok.intellij.settings" />
@@ -267,6 +268,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr
<srcdir dir="test/transform/src" />
<srcdir dir="test/core/src" />
<srcdir dir="test/bytecode/src" />
+ <srcdir dir="test/configuration/src" />
<conf name="build" sources="contrib" />
<conf name="test" sources="contrib" />
<settings>
@@ -292,10 +294,12 @@ the common tasks and can be called on to run the main aspects of all the sub-scr
<src path="test/core/src" />
<src path="test/transform/src" />
<src path="test/bytecode/src" />
+ <src path="test/configuration/src" />
</ivy:compile>
<copy todir="build/tests">
<fileset dir="test/pretty/resource" />
<fileset dir="test/transform/resource" />
+ <fileset dir="test/configuration/resource" />
</copy>
</target>
@@ -426,6 +430,9 @@ You can also create your own by writing a 'testenvironment.properties' file. The
<fileset dir="test/bytecode/src">
<include name="**/Test*.java" />
</fileset>
+ <fileset dir="test/configuration/src">
+ <include name="**/Test*.java" />
+ </fileset>
</batchtest>
</junit>
<echo level="info">All tests successful.</echo>