いくつかのテスト メソッドで単体テストを実行しようとするたびに、次の最初の行で 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 ファイルを追加する必要があることに気付きました。しかし、それをどうするか、何に使用するかはわかりません。
進め方のヒントは?