Hello
I'm using nunit 2.5 and when I try the following
nunit-console.exe "C:\Work\classLib\Data.Tests\bin\Debug\data.tests.dll" /out:output.txt
it still displays it on the console.
I can redirect ALL output by > output.txt of the whole command, but this doesn't work running in the context of NANT.
Any ideas?
EDIT: The NANT command is
<exec program="C:\Program Files\NUnit 2.5\bin\net-2.0\nunit-console.exe
" commandline="C:\Work\classLib\Data.Tests\bin\Debug\Data.Tests.dll
" workingdir="C:\Work\classLib\Data.Tests\bin\Debug" output="output.txt" />
Cheers Duncan