Info
Version: | 1.2.0 |
Author(s): | TddBuddy |
Last Update: | Monday, October 16, 2017 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/TddBuddy/SpeedySqlLocalDb |
NuGet Url: | https://www.nuget.org/packages/TddBuddy.SpeedySqlLocalDb |
Install
Install-Package TddBuddy.SpeedySqlLocalDb
dotnet add package TddBuddy.SpeedySqlLocalDb
paket add TddBuddy.SpeedySqlLocalDb
TddBuddy.SpeedySqlLocalDb Download (Unzip the "nupkg" after downloading)
Dependencies
- EntityFramework(>= 6.1.3)
- NUnit(>= 3.7.1)
Tags
It uses a localDB instance for the entire test run's life.
Each test's execution is wrapped into transaction to avoid test interfering with each other.
This means the cost of setting up the DB is only paid once. That is when the first test executes and the EF migrations are run to initialize the DB to the correct state.
Now supports Non-EF migrations .WithMigrationAction(()=>{ /* action*/ }); on the builder.
.