使用hangfire在xunit中

Posted zinan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用hangfire在xunit中相关的知识,希望对你有一定的参考价值。

框架为:abp

hangfire配置连接:https://aspnetboilerplate.com/Pages/Documents/Hangfire-Integration

在单元测试中如何配置呢?

1.我认为首先要配置测试类库的module

[DependsOn(typeof (AbpHangfireAspNetCoreModule))]
public class MyProjectWebModule : AbpModule
{
    public override void PreInitialize()
    {
        Configuration.BackgroundJobs.UseHangfire();             
    }

    //...
}
2.TO DO 

以上是关于使用hangfire在xunit中的主要内容,如果未能解决你的问题,请参考以下文章

c#怎么构建后台任务hangfire

vsts xunit vstest.console.exe失败,返回码为:1

MVVM 模式中代码隐藏的实用使用

调整 JavaScript 中代码排序的输入

如何查看sql server中代码创建的临时表?

java中代码执行顺序