I am looking to reference my database file in my unit test project. This is an AP.NET MVC app.
Please note: I know I should not be accessing the database in my unit tests but this is for a quick fix on one test that I need to have pass just now.
After the next milestone I will be mocking the database access methods etc.
So here is my connection string in my mvc app web config and the unit test ap.config files
<add name="DBConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\DB.MDF;Integrated Security=True;User Instance=True"
providerName="System.Data.SqlClient" />
When I run the test I get an error:
Test method ED.Tests.Controllers.CandidateControllerTest.PersonalDetailsStepPostShouldRedisplayIfNoSurnameSupplied threw exception: System.Data.SqlClient.SqlException: An attempt to attach an auto-named database for file C:\Users\dean\Desktop\ED\TestResults\dean_LAPTOP-D 2009-07-22 18_16_20\Out\DB.MDF failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share..
It seems to me the connection string is wrong but I'm not sure how to set the path properly. I have tried adding .... and the directory names etc.