G
grs
If you set up one project as a class library production code and another
project for you tests in the new team system how can you read a
configuration file as below:
string connectionString =
ConfigurationSettings.AppSettings["ConnectionString"];
I know you can add a connection string in the [TestMethod DataSource ...]
but this does not seem to be in the mode of TDD -- so how would you do it.
thanks
grs
project for you tests in the new team system how can you read a
configuration file as below:
string connectionString =
ConfigurationSettings.AppSettings["ConnectionString"];
I know you can add a connection string in the [TestMethod DataSource ...]
but this does not seem to be in the mode of TDD -- so how would you do it.
thanks
grs