I have a unit test where I need access to the directory specified by the
${basedir}property in build.xml. Is there any way I can access that
property from within my JUnit tests.
I realize that I can achieve this by using the dir property of the junit
task:
<junit fork="yes" dir="${basedir}">
but I would rather not, since I just getting access to the string, and
forking the JUnit tests causes them to take triple the time.
Any thoughts?
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>