public MySQLFixture() { DbContext = CreateDbContext(); PopulateDbContext(); var store = new EntityFrameworkFeatureStore(DbContext); Sut = new FeatureService(store); }
public EntityFrameworkFixture() { DbContext = CreateDbContext(); PopulateDbContext(); Sut = new EntityFrameworkFeatureStore(DbContext); }