Thanks, that was the solution, the only modification was that sysproperty
takes a "key" attribute instead of "name"
<sysproperty key="basedir" value="${basedir}" />
Cheers,
Magnus
> -----Original Message-----
> From: Stefan Bodewig [mailto:[EMAIL PROTECTED]]
> Sent: 28. januar 2002 15:15
> To: [EMAIL PROTECTED]
> Subject: Re: Is there a way for me to access the basedir attribute from
> my JUnit Tests
>
>
> On Mon, 28 Jan 2002, <[EMAIL PROTECTED]> wrote:
> > 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.
>
> Add a <sysproperty> element to your <junit> tasks, something like
>
> <sysproperty name="basedir" value="${basedir}" />
>
> then it will be set as a system property and you can retrieve it via
> System.getProperty("basedir").
>
> Stefan
>
> --
> To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>