Index: trunk/JavaCommons/build.xml
===================================================================
--- trunk/JavaCommons/build.xml	(revision 275)
+++ trunk/JavaCommons/build.xml	(revision 276)
@@ -97,6 +97,7 @@
 
 	<!-- JUnit Test General Properties -->
-
 	<property name="test.location.results" value="test-results" />
+	<property name="test.location.data" value="testdata" />
+	<property name="test.location.output" value="testoutput" />
 	<path id="JUnit.classpath">
 		<pathelement location="lib-test/junit-4.10.jar" />
@@ -298,4 +299,6 @@
 	<target depends="init.build" name="init.junit">
 		<mkdir dir="${test.location.results}" />
+		<mkdir dir="${test.location.data}" />
+		<mkdir dir="${test.location.output}" />
 	</target>
 	<target depends="init.junit" name="init.eventbenchcore-test">
@@ -304,4 +307,7 @@
 	<target depends="init.junit" name="init.javahelperlib-test">
 		<mkdir dir="${test.location.javahelperlib}" />
+		<copy includeemptydirs="true" todir="${test.location.data}">
+			<fileset dir="${JavaHelperLibTest.location}/testdata" />
+		</copy>
 	</target>
 
