C#版本的xUnit的测试框架模型和xUnit.NET开源项目
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开源项目的更多相关文章
- React MVC框架 <某某后台商品管理开源项目> 完成项目总结
**百货后台商品信息开源项目 1.利用React app脚手架 2.封装打包 buid 3.更偏向于后台程序员开发思维 4.利用的 react -redux react-router-dom ...
- 使用 xunit 编写测试代码
使用 xunit 编写测试代码 Intro xunit 是 .NET 里使用非常广泛的一个测试框架,有很多测试项目都是在使用 xunit 作为测试框架,不仅仅有很多开源项目在使用,很多微软的项目也在使 ...
- Selenium 4 Python的最佳测试框架
随着Python语言的使用越来越流行,基于Python的测试自动化框架也越来越流行.在项目选择最佳框架时,开发人员和测试人员会有些无法下手.做出选择是应该判断很多事情,框架的脚本质量,测试用例的简单性 ...
- 消灭Bug!十款免费移动应用测试框架推荐
对于移动应用开发者而言,Bug往往是最让人头疼的一大问题.不同于时时刻刻可以修补的Web App,移动App中的Bug往往隐藏得很深,甚至有时候等到用户使用才显现出来,这么一来开发者搞不好就会赔了 ...
- python pytest测试框架介绍二
在介绍一中简单介绍了pytest的安装和简单使用,接下来我们就要实际了解pytest了 一.pytest的用例发现规则 pytest可以在不同的函数.包中发现用例,发现的规则如下 文件名以test_开 ...
- React躬行记(14)——测试框架
测试不仅可以发现和预防问题,还能降低风险.减少企业损失.在React中,涌现了多种测试框架,本节会对其中的Jest和Enzyme做详细的讲解. 一.Jest Jest是由Facebook开源的一个测试 ...
- phpunit 测试框架安装
PHPUnit是一个轻量级的PHP测试框架.它是在PHP5下面对JUnit3系列版本的完整移植,是xUnit测试框架家族的一员(它们都基于模式先锋Kent Beck的设计).来自百度百科 一.下载wg ...
- Google C++测试框架系列:入门
Google C++测试框架系列:入门 原始链接:V1_6_Primer 注 GTest或者Google Test: Google的C++测试框架. Test Fixtures: 这个词实在找不到对应 ...
- 收藏清单: python测试框架最全资源汇总
xUnit frameworks 单元测试框架 frameworks 框架 unittest - python自带的单元测试库,开箱即用 unittest2 - 加强版的单元测试框架,适用于Pytho ...
随机推荐
- Jupyter Notebook 快捷键
Jupyter Notebook 快捷键 从命令模式进入编辑模式需按 Enter 键,从编辑模式切换到命令模式需按Esc 键. Jupyter Notebook 是一个交互式笔记本程序, 其有丰富的快 ...
- .net framework中重新注册IIS
要为 ASP.NET 修复 IIS 映射,请按照下列步骤执行操作:运行 Aspnet_regiis.exe 实用工具:单击“开始”,然后单击“运行”.在“打开”文本框中,键入 cmd,然后按 ENTE ...
- powerdesigner里建物理模型图时choose DBMS为空怎么办?
RT 出现如下对话框,是因为需要“DBMS”的规则文件夹 点击下图文件图标,浏览,找到安装目录里面PowerDesigner 15\Resource Files\DBMS,就可以了. 在此记录一下,希 ...
- string 与BigDecimal互转
小编知道在java中数据类型非常 的严格了,我们如果一个地方不小心就会导致应用出问题了,今天 小编就在string 转BigDecimal上碰到了一些问题,下面整理了几个例子大家一起来看看. 例子 ...
- 如何使用WinDriver为PCIe采集卡装驱动
如何使用WinDriver为PCIe采集卡装驱动 第一步:使用WinDriver生成驱动 1.运行Drier Wizard 2.点击New host driverproject 3.在列表中,选择待安 ...
- AngularJS路由设置方法
Module.config(['$routeProvider', function($routeProvider) { $routeProvider .when('/mall-home', { tem ...
- Unity3D性能优化小tips——把this.transform缓存缓存起来
Unity3D开发时中有一个小tips,这在官方的文档里其实有提及的,但不那么显眼,这里小说一下: 在MonoBehaviour进行编程时,我们经常会用this.transform, this.gam ...
- ant-design表单处理和常用方法及自定义验证
首先要说一下antdesign这个框架API和demo丰富,而且开发环境提供对应的warning来纠正用户的错误.是一个很好的组件库. 关于表单验证方面是依赖于 async-validator 库. ...
- HDU 1073 Online Judge(字符串)
Online Judge Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Tot ...
- An error occured while handling a json request
修复方法: sudo pip install werkzeug==0.8.3