• 关于使用TestDriven.Net 2.0的一点补充


                               关于使用TestDriven.Net 2.0的一点补充
                                                          电子科技大学软件学院03级02班 周银辉

         2006.12的<程序员>杂志介绍了一个很好用的单元测试工具"TestDriven.Net 2.0", 对于新手(我也是)需要补充说明的几点是:

    1,  要用"TestDriven.Net 2.0"进行单元测试除了安装"TestDriven.Net 2.0"外,你需要添加"nunit.framework"引用, 操作是"解决方案管理器-->引用-->(鼠标右键)添加引用-->.net-->nunit.framework.

    2,   添加名字空间
    using NUnit.Framework;

        为测试的类添加[TestFixture]特性
        为测试方法添加[Test]特性

    3, 示例代码
    using System;
    using System.Collections.Generic;
    using System.Text;
    using NUnit.Framework;

    namespace TestDrivenTest
    {
        [TestFixture]
        
    public class TestClass
        
    {
            [Test]
            
    public void TestRun()
            
    {
                Form1 frm1 
    = new Form1();
                
    int expected = 0;
                
    int result = frm1.GetResult(2);
                Assert.AreEqual(expected, result);
            }

        }

    }

  • 相关阅读:
    autorun.inf删除方法
    Re_Write序列号
    最常用的正则表达式
    SQL聚合使用GROUP BY
    Ext.Net的Window控件的简单使用
    SQL统计查询一个表中的记录,然后减法运算
    C#金额转换为汉字大写
    Ext.Net的Button按钮的使用
    C# 参考之方法参数关键字:params、ref及out 引用
    C#连接ACCESS 2007数据库
  • 原文地址:https://www.cnblogs.com/zhouyinhui/p/590535.html
Copyright © 2020-2023  润新知