使用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中的主要内容,如果未能解决你的问题,请参考以下文章