View Single Post
  #1  
Old 11-22-2006, 10:51 AM
teognost teognost is online now
Registered User
 
Join Date: 05-25-2004
Location: Prague,Czech Republic
Posts: 200
Question NUnit running from NCover issue

Currently we have a NANT build and we intend to migrate to VisBuild.
In Nant build unit tests are run from Ncover -by launching Ncover this way:
"C:\Program Files\NCover\NCover.console.exe" "C:\Program Files\NUnit-Net-2.0 2.2.8\bin\nunit-console.exe" "XTests.dll" /noshadow //a "XTests" //ea "XA1;XA2"
and everything is ok(working dir is some E:\NGUnitTests).
XTests.dll is the tested assembly,XTests is the profiled namespace ,XA1 and XA2 are attributes to be excluded from tests.


In order to do the same in VisBuild I did this:
-created a NCover action
-In Input tab I have set:
Mode->Executable
Exec+Param->"C:\Program Files\NUnit-Net-2.0 2.2.8\bin\nunit-console.exe"
Working dir->E:\NGUnitTests
List of assemblies to profile->XTests.dll
Classes and methodes to exclude->XA1 on one line,XA2 on another line.
-In Output tab I have set:
Profile log file->%NG_UNIT_TESTS_DIR%\Results\NCover\Coverage.log
Coverage output file->%NG_UNIT_TESTS_DIR%\Results\Ncover\Coverage.xml
-In Option tab I have ticked the checkbox 'Show command line ...'
When running this action I would expect to see Ncover is launched in similar way with NANT.
Instead it is launched like this:
"C:\Program Files\NCover\NCover.Console.exe" "C:\Program Files\NUnit-Net-2.0 2.2.8\bin\nunit-console.exe" //w E:\NGUnitTests //l E:\NGUnitTests\Results\NCover\Coverage.log //x E:\NGUnitTests\Results\Ncover\Coverage.xml

so no mention of profiled assemblies nor of excluded attributes.
Also I see you cannot set the profiled namespaces for this step?

Because of this the step fails-as it is in the output of the step:

Command: C:\Program Files\NUnit-Net-2.0 2.2.8\bin\nunit-console.exe
Command Args:
Working Directory: E:\NGUnitTests
Assemblies:
Coverage Xml: E:\NGUnitTests\Results\Ncover\Coverage.xml
Coverage Log: E:\NGUnitTests\Results\NCover\Coverage.log

Waiting for profiled application to connect...Connected
Configuring Profiler...
******************* Program Output *******************
NUnit version 2.2.8
Copyright (C) 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole.
Copyright (C) 2000-2003 Philip Craig.
All Rights Reserved.

OS Version: Microsoft Windows NT 5.1.2600 Service Pack 2 .NET Version: 2.0.50727.42

fatal error: no inputs specified


Could you please tell me what I did wrong when setting this Ncover action?
Also how can I set the profiled namespaces?
I would like to have the same results like in NANT.
Thanks
Reply With Quote