How to run nunit with msbuild from VS2010

折月煮酒 提交于 2019-12-31 10:24:50

问题


please tell me how to run nunit with msbuild. I am using TFS for code integration and VS2010 .


回答1:


You probably want to integrate NUnit with TFSBuild and not MSBuild since you are using Team Foundation Server.

You will need MSBuild tasks to be able to run NUnit as explained in the three following tutorials:

  • Using NUnit and NCover with TFS Build
  • Integrate Nunit test into a Tfs build
  • MSBuild with NUnit

The easiest way is to use the MSBuild Community Tasks where you already have a NUnit task ready to be used and you only will need to add a target to your msbuild file like so:

<Target Name="RunTests">  
    <!-- Run Unit tests -->  
    <CreateItem Include="$(OutDir)*.Tests.dll">  
      <Output TaskParameter="Include" ItemName="TestAssembly" />  
    </CreateItem>  
    <NUnit ToolPath="..\Tools\NUnit" DisableShadowCopy="true" Assemblies="@(TestAssembly)" />  
  </Target>


来源:https://stackoverflow.com/questions/4605267/how-to-run-nunit-with-msbuild-from-vs2010

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!