1. 参考kent beck的测试驱动写的C#测试框架模型

a) 测试用例: WasRun, 基类为TestCase

b) 框架: TestCaseTest用来测试TestCase,本身也是它的子类,可使用run调用自己的方法

c)重点:为WasRun和TestCase,添加setUp,tearDown功能

d)然后,TestResult用来返回和传递结果,主要是计数的结果

e) 最后,TestSuite封装一组测试,并在TestCaseTest中测试

WasRun<=>TestCase<=>TestSuite<=>TestCaseTest<=> Main

2.另外开源完整的测试框架可参考这里 https://github.com/xunit/xunit

贴上模型的代码,大家自己按类区分吧。

namespace xUnit
{
    class Program
    {
        static void Main(string[] args)
        {
            //(new TestCaseTest("testTemplateMethod")).run();

//(new TestCaseTest("testTemplateMethod")).run();
            //(new TestCaseTest("testResult")).run();
            //(new TestCaseTest("testFailedResultFormatting")).run();
            //(new TestCaseTest("testFailedResult")).run();

(new TestCaseTest("testSuite")).run(new TestResult());

Console.ReadLine();
        }
    }
}

namespace xUnit
{
    class TestResult
    {
        private int runCount;
        private int errorCount;
        public TestResult()
        {
            runCount = 0;
            errorCount = 0;
        }
        public string summary()
        {
            string sumStr = "" + runCount + " run, " + errorCount + " failed";
            return sumStr;
        }
        public void testStarted()
        {
            runCount++;
        }
        public void testFailed()
        {
            errorCount++;
        }
    }
}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;

namespace xUnit
{
    class TestCaseTest : TestCase
    {
        private string p;

public TestCaseTest(string p) : base(p)
        {
            // TODO: Complete member initialization
            this.p = p;
        }

//private WasRun test;
        TestResult result;
        public override void setUp()
        {
            //test = new WasRun("testMethod");
            result = new TestResult();
        }

public void testTemplateMethod()
        {
            WasRun test = new WasRun("testMethod");
            test.run(result);
           
            try
            {
                Assert.AreEqual("setUp testMethod tearDown ", test.log);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }

public void testResult()
        {
            WasRun test = new WasRun("testMethod");
            test.run(result);
            try
            {
                Assert.AreEqual("1 run, 0 failed", result.summary());
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
        public void testFailedResult()
        {
            WasRun testFailed = new WasRun("testBrokenMethod");
            testFailed.run(result);
            try
            {
                Assert.AreEqual("1 run, 1 failed", result.summary());
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }

public void testFailedResultFormatting()
        {
            result.testStarted();
            result.testFailed();
            try
            {
                Assert.AreEqual("1 run, 1 failed", result.summary());
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }

public void testSuite()
        {
            TestSuite suite = new TestSuite();
            suite.add(new WasRun("testMethod"));
            suite.add(new WasRun("testBrokenMethod"));
            suite.run(result);
            try
            {
                string msg = result.summary();
                Console.WriteLine(msg);
                Assert.AreEqual("2 run, 1 failed", msg);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
    
    }

}

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace xUnit
{
    class TestSuite
    {
        ArrayList tests;
        public TestSuite()
        {
            tests = new ArrayList();
        }
        public void add(WasRun test)
        {
            tests.Add(test);
        }
        public void run(TestResult result)
        {
            foreach (WasRun test in tests)
            {
                test.run(result);
            }
        }
    }
}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;

namespace xUnit
{
    class TestCase
    {
        protected string methodName = "";
        public TestCase()
        {
        }

public TestCase(string methodName)
        {
            this.methodName = methodName;
        }

public void run(TestResult result)
        {
            result.testStarted();

setUp();
            try
            {
                Type t = this.GetType();
                MethodInfo method = t.GetMethod(methodName);
                method.Invoke(this, null);
            }
            catch (Exception e)
            {
                result.testFailed();
                Console.WriteLine("运行测试程序设定抛出的异常," + e.InnerException.Message);
            }
          
            tearDown();
        }

public virtual void setUp()
        {
        }
        public virtual void tearDown()
        {
        }
     
    }
}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace xUnit
{
    class WasRun : TestCase
    {
        private string p;
        public string log = "";

public WasRun(string p)
            : base(p)
        {
            // TODO: Complete member initialization
            this.p = p;
        }

public void testMethod()
        {
            //wasRun = true;
            log += "testMethod ";
        }

public void testBrokenMethod()
        {
            throw new Exception("testBrokenMethod test failed");
        }

public override void setUp()
        {
            //wasRun = false;
            //wasSetUp = true;
            log += "setUp ";
        }
        public override void tearDown()
        {
            log += "tearDown ";
        }

}
}

C#版本的xUnit的测试框架模型和xUnit.NET开源项目的更多相关文章

  1. React MVC框架 <某某后台商品管理开源项目> 完成项目总结

    **百货后台商品信息开源项目 1.利用React  app脚手架 2.封装打包 buid 3.更偏向于后台程序员开发思维 4.利用的 react -redux    react-router-dom  ...

  2. 使用 xunit 编写测试代码

    使用 xunit 编写测试代码 Intro xunit 是 .NET 里使用非常广泛的一个测试框架,有很多测试项目都是在使用 xunit 作为测试框架,不仅仅有很多开源项目在使用,很多微软的项目也在使 ...

  3. Selenium 4 Python的最佳测试框架

    随着Python语言的使用越来越流行,基于Python的测试自动化框架也越来越流行.在项目选择最佳框架时,开发人员和测试人员会有些无法下手.做出选择是应该判断很多事情,框架的脚本质量,测试用例的简单性 ...

  4. 消灭Bug!十款免费移动应用测试框架推荐

      对于移动应用开发者而言,Bug往往是最让人头疼的一大问题.不同于时时刻刻可以修补的Web App,移动App中的Bug往往隐藏得很深,甚至有时候等到用户使用才显现出来,这么一来开发者搞不好就会赔了 ...

  5. python pytest测试框架介绍二

    在介绍一中简单介绍了pytest的安装和简单使用,接下来我们就要实际了解pytest了 一.pytest的用例发现规则 pytest可以在不同的函数.包中发现用例,发现的规则如下 文件名以test_开 ...

  6. React躬行记(14)——测试框架

    测试不仅可以发现和预防问题,还能降低风险.减少企业损失.在React中,涌现了多种测试框架,本节会对其中的Jest和Enzyme做详细的讲解. 一.Jest Jest是由Facebook开源的一个测试 ...

  7. phpunit 测试框架安装

    PHPUnit是一个轻量级的PHP测试框架.它是在PHP5下面对JUnit3系列版本的完整移植,是xUnit测试框架家族的一员(它们都基于模式先锋Kent Beck的设计).来自百度百科 一.下载wg ...

  8. Google C++测试框架系列:入门

    Google C++测试框架系列:入门 原始链接:V1_6_Primer 注 GTest或者Google Test: Google的C++测试框架. Test Fixtures: 这个词实在找不到对应 ...

  9. 收藏清单: python测试框架最全资源汇总

    xUnit frameworks 单元测试框架 frameworks 框架 unittest - python自带的单元测试库,开箱即用 unittest2 - 加强版的单元测试框架,适用于Pytho ...

随机推荐

  1. 《大规模web服务开发技术》笔记

    前段时间趁空把<大规模web服务开发技术>这本书看完了,今天用一下午时间重新翻了一遍,把其中的要点记了下来,权当复习和备忘.由于自己对数据压缩.全文检索等还算比较熟,所以笔记内容主要涉及前 ...

  2. 新型数据库Kudu应用经验分享

    小米使用kudu的案例 http://www.aiweibang.com/yuedu/60603532.html 调研kudu的情况

  3. servlet中ServletConfig的使用

    转自:http://www.zzzj.com/html/20090117/69483.html 前言 相对于ServletContext,ServletConfig是针对特定的Servlet的参数或属 ...

  4. 倍福TwinCAT(贝福Beckhoff)常见问题(FAQ)-如何修改代码字体

    工具-选项   TwinCAT,PLC Environment,Text editor,然后在文本区域中修改字体     更多教学视频和资料下载,欢迎关注以下信息: 我的优酷空间: http://i. ...

  5. java中的Iterator接口

    Iterator接口 Iterator接口也是Java集合框架的成员,但它与Collection系列.Map系列的集合不一样:Collection系列集合.Map系列集合主要用于盛装其他对象,而Ite ...

  6. hdu1700 Points on Cycle (数学)

    Problem Description There is a cycle with its center on the origin. Now give you a point on the cycl ...

  7. Android中的线程池概述

    线程池 Android里面,耗时的网络操作,都会开子线程,在程序里面直接开过多的线程会消耗过多的资源,在众多的开源框架中也总能看到线程池的踪影,所以线程池是必须要会把握的一个知识点; 线程运行机制 开 ...

  8. Firefly 其他博客

    http://www.cnblogs.com/9miaoshetuan/tag/Firefly/ http://www.cnblogs.com/9miaoshetuan/p/3853124.html ...

  9. vue打包后出现一些map文件的解决方法

    Vue打包后出现一些map文件的解决办法: 问题: 可能很多人在做vue项目打包,打包之后js中,会自动生成一些map文件,那我们怎么把它去掉不要呢? 1.运行  cnpm run build  开始 ...

  10. ZK框架笔记1、ZK Ajax框架简介

    简介    ZK是一个基于事件驱动和组件的框架,他为web应用提供了丰富的接口.zk包括一个基于Ajax的事件驱动引擎.一整套丰富的XML用户接口语言(XML User Interface Langu ...