namespace Volo.Abp.EventBus { public abstract class EventBusTestBase : AbpIntegratedTest { protected IEventBus EventBus; protected EventBusTestBase() { EventBus = GetRequiredService(); } protected override void SetAbpApplicationCreationOptions(AbpApplicationCreationOptions options) { options.UseAutofac(); } } }