Unit Test 的 Configuration 設定

摘要:Unit Test 的 Configuration 設定

這個大部分有寫 UT 的話應該都會了吧!

從 VB6 、VS2003 開始寫 單元測試以來,目前就屬VS2008 所內建的 Unit Test Framework 最好用。

而且還很容易可以 Debug 和 Config 設定

前幾天有朋友問到寫 Unit Test 時,那些有用到 config 設定的程式就應該沒有辦法用了吧?

其實不然,只要在 Unit Test 的專案中加上「app.config」

並將「原本的 config 」會用到的複製一份到 app.config 中 。  ( 無論原本是 web.config 或 app.config 都沒關係 )

再重新執行

就可以看到原本在 DAL 層中,就會去讀 UT 專案的 Config

所以可以放心地寫 UT 啦!