public void _TestTestFixtureSetUp()
        {
            NHibernate.Cfg.Configuration cfg = new NHibernate.Cfg.Configuration().Configure();

            NHibernate.Tool.hbm2ddl.SchemaExport schemaExport = new NHibernate.Tool.hbm2ddl.SchemaExport(cfg);

            schemaExport.Drop(false, true);
            schemaExport.Create(false, true);

            _sessionManager = new DataAccessLayer.NHibernateSessionManager();

            ISessionFactory sessionFactory = _sessionManager.GetSession().SessionFactory;

            base.DatabaseTestFixtureSetUp();
        }
        public void _TestTestFixtureSetUp()
        {

            NHibernate.Cfg.Configuration cfg = new NHibernate.Cfg.Configuration().Configure();

            NHibernate.Tool.hbm2ddl.SchemaExport schemaExport = new NHibernate.Tool.hbm2ddl.SchemaExport(cfg);

            schemaExport.Drop(false, true);
            schemaExport.Create(false, true);

            _sessionManager = new DataAccessLayer.NHibernateSessionManager();

            ISessionFactory sessionFactory = _sessionManager.GetSession().SessionFactory;

            base.DatabaseTestFixtureSetUp();
        }