/// <summary> /// Define base tests fixture. /// </summary> public BaseTestsFixture() { Context = ApplicationContextFactory.Create(); //var configurationProvider = new MapperConfiguration(cfg => //{ // cfg.AddProfile<CardProfile>(); //}); //Mapper = configurationProvider.CreateMapper(); }
/// <summary> /// Destroy the context. /// </summary> public void Dispose() { ApplicationContextFactory.Destroy(Context); }