在Visual Studio 2010 里使用Nunit 进行Debug 测试

1. 创建带测试类库的项目解决方案(详细方法参见Nunit Quick Start),如图:

  image

下面一个是供Nunit 进行单元测试的。

创建测试类库是注意事项:

要选择Visual C# ---> Class Library, 如下图:



不要选择Test--->Test Projects, 否则会出现以下错误:

 

2 选中测试类库,鼠标右键选择属性,设置调试属性

在启动操作 选项中,选择启动外部程序,并设置好Nunit 单元测试 Nunit.exe程序位置

3 打开 Nunit 安装目录,找到Nunit.exe.config

image

修改配置文件如下:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!--
   The GUI only runs under .NET 2.0 or higher. The
   useLegacyV2RuntimeActivationPolicy setting only
applies under .NET 4.0 and permits use of mixed
   mode assemblies, which would otherwise not load
   correctly.
  -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <!-- Comment out the next line to force use of .NET 4.0
    <supportedRuntime version="v2.0.50727" />
    <supportedRuntime version="v4.0.30319" /> -->
    <requiredRuntime version="v4.0.30319" /> <!--添加该行配置,并只留这一个配置-->
  </startup>
  <runtime>
    <!-- Ensure that test exceptions don't crash NUnit -->
    <legacyUnhandledExceptionPolicy enabled="1" /> 

    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
    <loadFromRemoteSources enabled="true" />  <!--该项配置为true-->
    <!-- Look for addins in the addins directory for now -->
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <probing privatePath="lib;addins" />
    </assemblyBinding> 

  </runtime> 

</configuration> 

4  为要测试的方法打上断点,选中测试类库为启动项,按F5运行

  

image

在Nunit 界面上运行要测试的方法,成功在断点上停下来

image

 

 

第二篇:

目前nunit的老版本不支持.net framework 4.0程序的测试。运行4.0程序集需要下载nunit的新版本 http://www.nunit.org/

  目前我使用的版本是nunit 2.5.5,但是发现下断点了以后不能调试。于是gogole了一下,发现这篇文章http://frater.wordpress.com/2010/05/04/debugging-nunit-tests-under-visual-studio-2010/


 

  其中,有两个配置 nunit.exe.config 步骤:

 

  1. 在 <configuration> 下 加

...

   <startup> 
      <requiredRuntime version="v4.0.30319" />
   </startup>
 

 

  2.  在 <runtime> 加

 

<runtime>

...


  <loadFromRemoteSources enabled="true" />


...

</runtime>
 

 

  其中loadFromRemoteSources 的配置选项为:<loadFromRemoteSources enabled="true|false" />

 

  另外,更加你的.net framework版本选择是哪个版本:v4.0.20506 和 4.0.30319

  如果是4.0.30319配置为:<requiredRuntime version="v4.0.30319" />  

  如果是4.0.20506 配置为:<requiredRuntime version="v4.0.20506" /> 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值