public QueryTestFixture() { Context = EventDbContextFactory.Create(); var configurationProvider = new MapperConfiguration(cfg => { cfg.AddProfile <MappingProfile>(); }); Mapper = configurationProvider.CreateMapper(); }
public void Dispose() { EventDbContextFactory.Destroy(Context); }
public CommandTestBase() { _context = EventDbContextFactory.Create(); }