每次我尝试使用某些测试方法运行单元测试时,都会在以下第一行得到 NullReferenceException:
public DB()
{
this.sqlConnectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
this.con = new SqlConnection(this.sqlConnectionString);
this.con.StateChange += new StateChangeEventHandler(this.Connection_StateChange);
}
经过进一步研究,我意识到我应该在我的测试项目中添加一个 app.config 文件。不过,我不知道如何处理它或它的用途。
关于如何进行的提示?