예제 #1
0
        public MySQLFixture()
        {
            DbContext = CreateDbContext();
            PopulateDbContext();
            var store = new EntityFrameworkFeatureStore(DbContext);

            Sut = new FeatureService(store);
        }
예제 #2
0
 public EntityFrameworkFixture()
 {
     DbContext = CreateDbContext();
     PopulateDbContext();
     Sut = new EntityFrameworkFeatureStore(DbContext);
 }