|
When you create database test in a MsTest project, usually it configure an initialization method that deploy the database schema before test runs. [AssemblyInitialize()]
public static void IntializeAssembly(TestContext ctx)
{ //Setup the test database...
|