Aug
26
alkampfer on August 26th, 2009
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 based on setting in the
//configuration file
DatabaseTestClass.TestService.DeployDatabaseProject();
Continue reading about Failed to deploy database project error during database testing




