chevron-thin-right chevron-thin-left brand cancel-circle search youtube-icon google-plus-icon linkedin-icon facebook-icon twitter-icon toolbox download check linkedin phone twitter-old google-plus facebook profile-male chat calendar profile-male
Welcome to Typemock Community! Here you can ask and receive answers from other community members. If you liked or disliked an answer or thread: react with an up- or downvote.
0 votes
:cry:
Hi All ,
I i am using CC.Net 1.3,NUnit 2.4.3,NCover2.0.2.0 and .Net 2.0(VS2005).....
i want to config all this in ccnet.config and i want to send all Ncover Result to my mail...using Command Prompt.
so how i configer NCover with ccnet.config .
asked by indradevpandey (600 points)

1 Answer

0 votes
Hi,

Your question is kind of broad. As an example of running tests using NCover and Typemock together here's an example (using MSBuild):

<Exec Command='"$(TMockRunnerPath)TMockRunner.exe" -link NCover -first -target 2.0 $(NCover) //a TypeMock //x $(NCoverResults)/OutputCoverageFile.xml $(NUnit) /xml=$(NUnitResults)/Results.xml $(InstallDir)Test.dll ' />

Please refer to the Typemock help file for how to execute tests from MSBuild.

For further information look at:
CC.Net site - http://http://confluence.public.thought ... ontrol.NET
NCover site - http://www.ncover.com/
answered by gilz (14.5k points)
...