C#-创建用于测试的父类StartupBase用于服务注入

当写完C#代码,需要对某个方法进行测试。

创建一个XXXTests.cs文件之后,发现需要注入某个服务怎么办?

再创建一个StartupBase.cs文件:

cs 复制代码
public abstract class StartupBase
{
    public IConfiguration Configuration { get; }
    public IServiceCollection Services { get; }
    public IServiceProvider ScopeProvider { get; }
    public StartupBase()
    {
        var configurationRoot = new ConfigurationBuilder()
       .SetBasePath(Directory.GetCurrentDirectory())
       .AddJsonFile("appsettings.json", false)
       .Build();
        Configuration = configurationRoot;
        Services = new ServiceCollection();
        ScopeProvider = Services.BuildServiceProvider();
    }
}

然后把原先需要使用的appsetting.json弄进来。

如果没有,自己创建一个:

cs 复制代码
{
  "Env": "开发环境",
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning"
    }
  },
  "AllowedHosts": "*",
  "ConnectionStrings": {
    "SQLConnection": ""
  },
  "CustomInfo":{
    
  }
}

记得属性改一下:

然后在自己创建的Test类中,继承StartupBase,如下:

cs 复制代码
[TestClass()]
public class SFOpenClientTests : StartupBase
{
    [TestMethod()]
    public void LogisticsTest()
    {
        var services = base.Services;
        var configure = base.Configuration;
        var scopeProvider = base.ScopeProvider;
        //你的逻辑代码
    }
}

这样就能拿到Services、Configuration、ScopeProvider。

想用哪个用哪个,没有的就到StartupBase里面注入就行。

目录结构参考如下:

然后就可以快乐地【调试测试】

相关推荐
Envyᥫᩣ4 小时前
深入浅出C#编程语言
开发语言·c#
机器人天才一号6 小时前
C#从入门到放弃
开发语言·c#
吾与谁归in6 小时前
【C#设计模式(10)——装饰器模式(Decorator Pattern)】
设计模式·c#·装饰器模式
冷眼Σ(-᷅_-᷄๑)13 小时前
Path.Combine容易被忽略的细节
c#·.net
SongYuLong的博客19 小时前
C# (定时器、线程)
开发语言·c#
百锦再20 小时前
详解基于C#开发Windows API的SendMessage方法的鼠标键盘消息发送
windows·c#·计算机外设
无敌最俊朗@21 小时前
unity3d————协程原理讲解
开发语言·学习·unity·c#·游戏引擎
程序设计实验室21 小时前
在网页上调起本机C#程序
c#
Crazy Struggle1 天前
.NET 8 强大功能 IHostedService 与 BackgroundService 实战
c#·.net·.net core
fs哆哆1 天前
C#编程:优化【性别和成绩名次】均衡分班
开发语言·c#