farlee2121 / TestingPatterns

This project is to record and share patterns and libraries that make testing easier, descriptive and resilient
https://20xtesting.slides.spencerfarley.com
5 stars 0 forks source link

Add automated Seed data sample #23

Open farlee2121 opened 6 years ago

farlee2121 commented 6 years ago
public class CreateWithSeedIfNotExists : CreateDatabaseIfNotExists<ApplicationDbContext>
{
    protected override void Seed(ApplicationDbContext context)
    {

    }
}