.Net测试模拟库FakeItEasy用法示例
2024-09-13
22
FakeItEasy简介
FakeItEasy是一个.NET平台的简单mocking开源库,它提供了一个简单的方式来模拟对象和创建伪造对象,方便我们在单元测试中更容易地创建模拟对象。
FakeItEasy库使用非常简单,方便开发者模拟各种情况,来检查被测试的代码是否能够正确。
使用 FakeItEasy,可以创建模拟对象,这些对象可以替代实际的对象,用于测试。
FakeItEasy 的主要功能包括:
创建模拟对象:FakeItEasy 提供了丰富的 API,可以用于创建各种类型的模拟对象。 配置模拟对象的行为:FakeItEasy 提供了灵活的机制,可以配置模拟对象的行为。 断言模拟对象的行为:FakeItEasy 提供了丰富的断言,可以用于断言模拟对象的行为。FakeItEasy使用方法
下面是一个使用FakeltEasy的示例:
比如一个商城,我们需要获取商品的价格。在三层架构里,我们就会定义仓储接口:IProductRepository,供业务服务层调用。
1、仓储接口
/// <summary>
/// 商品仓储接口
/// </summary>
public interface IProductRepository
{
/// <summary>
/// 获取商品价格
/// </summary>
/// <param name="productId"></param>
/// <returns></returns>
decimal GetProductPrice(int productId);
}
2、商品服务
/// <summary>
/// 商品服务
/// </summary>
public class ProductService
{
private readonly IProductRepository _productRepository;
public ProductService(IProductRepository productRepository)
{
_productRepository = productRepository;
}
/// <summary>
/// 获取商品价格
/// </summary>
/// <param name="productId"></param>
/// <returns></returns>
public decimal GetPriceForProduct(int productId)
{
return _productRepository.GetProductPrice(productId);
}
}
3、模拟单元测试
using FakeItEasy;
using Microsoft.VisualStudio.TestTools.UnitTesting;
[TestMethod]
void TestMethod()
{
//模拟创建商品仓储对象
var productRepository = A.Fake<IProductRepository>();
//模拟仓储获取商品价格
A.CallTo(() => productRepository.GetProductPrice(1)).Returns(19);
A.CallTo(() => productRepository.GetProductPrice(2)).Returns(20);
var productService = new ProductService(productRepository);
//验证是否正确
var result1 = productService.GetPriceForProduct(1);
Assert.AreEqual(result1, 19);
//验证是否正确
var result2 = productService.GetPriceForProduct(2);
Assert.AreEqual(result2, 20);
}
FakeItEasy GitHub地址
https://github.com/FakeItEasy/FakeItEasy
更新于:1个月前赞一波!
相关文章
- ASP.NET Core 使用Razor code blocks替代@helper
- .NET Core Razor page/MVC 返回json忽略空属性
- MiniAPI参数绑定 服务注入 响应输出使用示例
- ASP.NET Core MVC 添加Area和Route配置
- jwt是什么?.NET Core API如何使用JwtBearer验证
- .NET Core c#使用SkiaSharp压缩裁切图片去除水印
- .Net Core HttpClient读取GB2312网页乱码
- .NET Core c#使用SkiaSharp压缩图片
- .NET Core HttpClient报错The character set provided in ContentType is invalid. Cannot read content as string using an invalid character set.
- .NET attribute 验证两个字段相同
- .NET MVC jquery.validate errorPlacement无效
- .NET Core常用缓存中间件和他们的用法
- .net core webapi RateLimit接口防刷
- .NET Core MVC判断是否是ajax请求
- .NET Core获取请求者真实IP
- .NET MVC ViewBag ViewData Mmodel怎么选择?
- .NET Core MVC 获取UrlReferer
- .NET Core MVC页面输出中文被编码了
- .NET Core读写文件的方法
- .NET Core MD5加密
文章评论
评论问答