这篇文章主要介绍了C# 使用SpecFlow创建BDD测试用例,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
将自然语言编写的测试用例转换为可执行的测试,可以大大降低需求与开发之间的沟通成本,这是BDD(行为驱动开发)希望达到的效果。SpecFlow是.Net平台的BDD工具,可以帮助我们创建面向BDD的测试用例。
首先,在Visual Studio 2022中安装SpecFlow插件。选择菜单扩展->管理扩展,然后搜索SpecFlow:
点击下载,下载完成后,需要退出Visual Studio 2022,插件会自动安装。
我们编写一个简单的计算BMI(Body Mass Index身体质量指数)的功能作为测试目标,算法很简单,输入是身高和体重,计算公式是体重除以身高的平方。
再次启动Visual Studio,创建一个类库项目,名称为CalBmi,编写代码如下:
namespace CalBmi
{
public class BmiCalculator
{
public Decimal Height { get; set; }
public Decimal Weight { get; set; }
public Decimal Bmi()
{
throw new NotImplementedException();
}
}
}
接下来,在解决方案中添加SpecFlow项目,选择项目类型为SpecFlow:
项目名称为TestBmi,选择xUnit作为Test Framework:
创建完成后,项目的结构是这样的:
然后,添加项目引用,将测试目标项目CalBmi添加到TestBmi的项目引用中:
到这里,准备工作完成,现在可以开始写测试用例了。在TestBmi中有一个示例模板,
代码是这样的:
Feature: Calculator
![Calculator](https://specflow.org/wp-content/uploads/2020/09/calculator.png)
Simple calculator for adding **two** numbers
Link to a feature: [Calculator](TestBmi/Features/Calculator.feature)
***Further read***: **[Learn more about how to generate Living Documentation](https://docs.specflow.org/projects/specflow-livingdoc/en/latest/LivingDocGenerator/Generating-Documentation.html)**
@mytag
Scenario: Add two numbers
Given the first number is 50
And the second number is 70
When the two numbers are added
Then the result should be 120
这个测试的是两个数字相加,我们照猫画虎,编写我们自己的测试用例,我们添加一个新的SpecFlow feature:
编写代码如下:
Feature: 计算BMI
@mytag
Scenario: 根据身高体重计算BMI
Given 身高1.75米
And 体重70.00公斤
When 计算BMI
Then 结果应该是22.86
点击右键,选择DefineSteps:
一个新的测试文件被创建了:
代码如下:
using System;
using TechTalk.SpecFlow;
namespace TestBmi.StepDefinitions
{
[Binding]
public class 计算BMIStepDefinitions
{
[Given(@"身高(.*)米")]
public void Given身高米(Decimal p0)
{
throw new PendingStepException();
}
[Given(@"体重(.*)公斤")]
public void Given体重公斤(Decimal p0)
{
throw new PendingStepException();
}
[When(@"计算BMI")]
public void When计算BMI()
{
throw new PendingStepException();
}
[Then(@"结果应该是(.*)")]
public void Then结果应该是(Decimal p0)
{
throw new PendingStepException();
}
}
}
在这个类中,编写测试,首先创建BmiCalculator的实例:
private readonly BmiCalculator _bmical = new BmiCalculator();
然后,改写各个方法:
using CalBmi;
using System;
using TechTalk.SpecFlow;
namespace TestBmi.StepDefinitions
{
[Binding]
public class 计算BMIStepDefinitions
{
private readonly BmiCalculator _bmical = new BmiCalculator();
private decimal _result;
[Given(@"身高(.*)米")]
public void Given身高米(Decimal p0)
{
_bmical.Height = p0;
}
[Given(@"体重(.*)公斤")]
public void Given体重公斤(Decimal p0)
{
_bmical.Weight=p0;
}
[When(@"计算BMI")]
public void When计算BMI()
{
_result=_bmical.Bmi();
}
[Then(@"结果应该是(.*)")]
public void Then结果应该是(Decimal result)
{
_result.Should().Be(result);
}
}
}
在测试管理器中运行这个测试:
与想象的一样,测试没有通过,因为我们没有编写实现代码,现在,修改BmiCalculator ,增加计算方法:
namespace CalBmi
{
public class BmiCalculator
{
public Decimal Height { get; set; }
public Decimal Weight { get; set; }
public Decimal Bmi()
{
return Weight/Height/Height;
}
}
}
再次运行测试:
仍然没有通过,问题是需要保留两位小数,最后一位四舍五入,修改算法:
public Decimal Bmi()
{
return System.Decimal.Round(Weight /Height/Height,2);
}
再次运行测试,这次通过了:
在测试中给出了测试步骤和每个步骤花费的时间。
到此这篇关于C# 使用SpecFlow创建BDD测试用例的文章就介绍到这了,更多相关C# SpecFlow BDD测试用例内容请搜索得得之家以前的文章希望大家以后多多支持得得之家!
本文标题为:C# 使用SpecFlow创建BDD测试用例的示例代码
基础教程推荐
- C#类和结构详解 2023-05-30
- C# List实现行转列的通用方案 2022-11-02
- unity实现动态排行榜 2023-04-27
- C#控制台实现飞行棋小游戏 2023-04-22
- 一个读写csv文件的C#类 2022-11-06
- C# windows语音识别与朗读实例 2023-04-27
- C# 调用WebService的方法 2023-03-09
- ZooKeeper的安装及部署教程 2023-01-22
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- winform把Office转成PDF文件 2023-06-14